iOS9 新出的关键字:用来修饰属性,或者方法的参数,返回值 好处:1.迎合swift 2.提高我们开发人员开发规范,减少程序员之间的交流 注意:iOS9新出的的关键字nonnull,nullable,null_unspecified,null_resettable只能修饰对象,不能修饰基本数据类型 nullable : 修饰的对象可以为空 书写方式: 1.@property (nonatomic , strong) NSString * __nullable company; 2.@prope…