关键字nonnull和nullable - ShenYj/ShenYj.github.io GitHub Wiki
-
nonnull不可为空,等同于_Nonnull和__nonnulle.g.
@property (nonatomic, strong, nonnull) UIView *view; @property (nonatomic, strong) UIView *_Nonnull view; @property (nonatomic, strong) UIView *__nonnull view;
-
nullable可为空,等同于_Nullable和__nullablee.g.
@property (nonatomic, strong, nullable) UIView *view; @property (nonatomic, strong) UIView *_Nullable view; @property (nonatomic, strong) UIView *__nullable view;
-
null_resettablesetter方法可传空,getter方法不为空 -
_Null_unspecified不确认是否为空