This tag should be used for questions about the nullability annotations added to Objective-C with Xcode 6.3.
Xcode 6.3 added nullability annotations to Objective-C to help improve the interoperability between Objective-C and Swift.
Specifically, these annotations allow Objective-C whether Swift should treat objects in methods defined in Objective-C as optionals or non-optionals.
The posisble annotations are:
nullable
nonnull
But there also exists the NS_ASSUME_NONNULL_BEGIN
and NS_ASSUME_NONNULL_END
macros for marking entire sections of code as nonnull
.