细心地同学会发现,iOS9 新出了一些关键字用于修饰属性、方法的参数、方法返回值,来规范开发。
好处:提高程序员规范,减少交流成本,程序员一块就知道怎么赋值了。
注意:只能用于对象的修饰,不能声明基本类型,因为只有对象才能为nil。
下面我们来列举说明:
A nonnull: 表示属性不能为空,non:非 null:空
1
2
3
4
5
6
//方式一:
@property (nonatomic, strong, nonnull) NSString *name;
//方式二:
@property (nonatomic, strong) NSString * _Nonnull name;
//方式三:
@property (nonatomic, strong) NSString * __nonnull name;
1
2
3
4
5
6
7
//在NS_ASSUME_NONNULL_BEGIN 与NS_ASSUME_NONNULL_END之间所有的对象属性,方法参数,方法返回值,默认都是nonnull
NS_ASSUME_NONNULL_BEGIN
@property (nonatomic, strong) NSString *name;
NS_ASSUME_NONNULL_END
B nullable:可以为nil
1
2
3
4
5
6
//方式一:
@property (nonatomic, strong, nullable) NSString *name;
//方式二:
@property (nonatomic, strong) NSString * _Nullable name;
//方式三:
@property (nonatomic, strong) NSString * __nullable name;
C null_resettable:可以重新设置空,set方法可以为空,get不能为空
1
2
//方式一:
@property (nonatomic, strong, null_resettable) NSString *name;
注意:用null_resettable属性,必须重写set,或者get方法,处理传值为nil的情况。
D _Null_unspecified:不确定是否为空
1
2
//方式一:
@property (nonatomic, strong) NSString * _Null_unspecified name;