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…
当我们定义某个属性的时候 如果当前使用的编译器版本比较高(6.3+)的话经常会遇到这样一个警告:warning:Pointer is missing a nullability type specifier (__nonnull or __nullable) 苹果在Xcode 6.3引入了一个Objective-C的新特性:nullability annotations.这一新特性的核心是两个新的类型注释:__nullable和__nonnull.从字面上我们可以猜到,__nullable表示…