1 down vote favorite I'm adding the MKStoreKit to my app and I'm getting a warning, Method possibly missing a [super dealloc] call. I know the library has been converted for the new ARC. However, I'm not ready to convert my whole app to ARC. How shou…
前言 为什么不要在init和dealloc方法中调用getter和setter:Apple在Mac与iOS中关于内存管理的开发文档中,有一节的题目为:"Don'tUse Accessor Methods in Initializer Methods and dealloc",文中说:"Theonly places you shouldn't use accessor methods to set an instancevariable are in initializer m…