This tag should be used for questions about the nullability annotations added to Objective-C with Xcode 6.3.
In Xcode 7 GM I started to get this warning: Pointer is missing a nullability type specifier (_Nonnull, _Nullable, or _Null_…
ios objective-c objective-c-nullabilityWith Xcode 6.3 there were new annotations introduced for better expressing the intention of API's in Objective-C (and to ensure better …
objective-c nullable objective-c-nullabilityWhen compiling with -Wnullable-to-nonnull-conversion, we get a proper warning with the following code: NSString * _Nullable maybeFoo = @"foo"; ^(NSString * _Nonnull bar) { }(…
ios objective-c xcode nullable objective-c-nullability