类扩展 (Class Extension也有人称为匿名分类)
- 作用:
- 能为某个类附加额外的属性,成员变量,方法声明
- 一般的类扩展写到.m文件中
- 一般的私有属性写到类扩展
- 使用格式:
@interface Mitchell()//属性//方法 @end
-
与分类的区别
-
分类的小括号中必须有名字
@interface 类名(分类名字)/*方法声明*/@end@implementation类名(分类名字) /*方法实现*/ @end
- 分类只能扩充方法,不能扩展属性和成员变量(如果包含成员变量会直接报错)。
- 如果分类中声明了一个属性,那么分类只会生成这个属性的set、get方法声明,也就是不会有实现。
- 举例说明:如果我们分别在,类扩展与分类中添加了两个属性,
但是@property并没有自动为我们设置的属性生成set、get方法
。
-
- 再说一下我们为什么不能包含类的 .m文件,因为这样会重复包含另一个类的实现文件。
使用运行时的代码如下:
@interface QKYCrmMyCustomerController (mcCate)@property (nonatomic,copy)NSString *myselfStr;@end@implementation QKYCrmMyCustomerController (mcCate)static NSString *const myStr;- (void)setMyselfStr:(NSString *)myselfStr{ objc_setAssociatedObject(self, &myStr, myselfStr, OBJC_ASSOCIATION_COPY);}- (NSString *)myselfStr{ return objc_getAssociatedObject(self, &myStr);}@end
文/Mitchell(简书作者) 原文链接:http://www.jianshu.com/p/18d48e7f2aad 著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。