标签:
好处:
注意: iOS9新出关键字nonnull,nullable,null_resettable,_Null_unspecified只能修饰对象,不能修饰基本数据类型
/**
1. 首字母不带下滑线的修饰类名(eg. nullable)
2. 首字母带一个下划线,则首字母大写,修饰对象(eg. _Nullable)
3. 首字母带两个下划线,则首字母小写,修饰对象(eg. __nullable)
4. 大多数一般只有第一种
*/
nullable
作用:表示可以为空
nullable书写规范:
// 方式一:
@property (nonatomic, strong, nullable) NSString *name;
// 方式二:
@property (nonatomic, strong) NSString *_Nullable name;
// 方式三:
@property (nonatomic, strong) NSString *__nullable name;
nonnull
作用:不能为空
nonnull: non:非 null:空
书写格式:
@property (nonatomic, strong, nonnull) NSString *icon;
@property (nonatomic, strong) NSString * _Nonnull icon;
@property (nonatomic, strong) NSString * __nonnull icon;
在NS_ASSUME_NONNULL_BEGIN
和NS_ASSUME_NONNULL_END
之间,定义的所有对象属性和方法默认都是nonnull
null_resettable
作用: get:不能返回为空, set可以为空
// 书写方式:
@property (nonatomic, strong, null_resettable) NSString *name;
// 注意;如果使用null_resettable,必须 重写get方法或者set方法,处理传递的值为空的情况
_Null_unspecified
作用:不确定是否为空
// 书写方式只有这种
// 方式一
@property (nonatomic, strong) NSString *_Null_unspecified name;
// 方式二
@property (nonatomic, strong) NSString *__null_unspecified name;
放在类型后面,表示限制这个类型。
@property (nonatomic, strong) NSMutableArray<NSString *> *datas;
@interface Person<ObjectType> : NSObject {
// 语言
@property (nonatomic) ObjectType language;
}
作用:用于转换类型
+ (instancetype)person;
在调用的时候,很清楚的知道返回类型(类似于instancetype,但instancetype只能用于初始化中)
作用:
1. 将此类型指定为class_name或class_name的子类,告诉编译器这两者均能适配。
2. Objective-C是动态类型,编译器会在编译时做类型匹配,不会有编译警告,更不会报错。
场景:
1. 泛型
2. 方法返回值
//
- (nullable __kindof UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath; visible or index path is out of range;
// returns nil if cell is not
@property (nonatomic, readonly) NSArray<__kindof UITableViewCell *> *visibleCells;
标签:
原文地址:http://blog.csdn.net/u013196181/article/details/51344697