iOS9新出的關鍵字:用來修飾屬性,或者方法的參數,方法的傳回值
iOS9新出關鍵字nonnull,nullable,null_resettable,_Null_unspecified
需要注意的一點只能修飾對象,不能修飾基礎資料型別 (Elementary Data Type).
雖然在項目的代碼編寫中不會經常用到,不過在調用蘋果系統方法的時候還是會經常遇到,需要做一個總結
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;
__kindof:表示當前類或者它子類
__kindof書寫格式:
放在類型前面,表示修飾這個類型(__kindof MyCustomClass *)
__kindof :在調用的時候,很清楚的知道傳回型別 使用__kindof 修飾的類名既可以表示當前類,也可以表示當前類的子類
以上所述是小編給大家介紹的iOS 泛型中nullable、null resettable、null kindof 用法詳解,希望對大家有所協助,如果大家有任何疑問請給我留言,小編會及時回複大家的。在此也非常感謝大家對雲棲社區網站的支援!