本文主要是介绍Category和Associative,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Category,类目,可以为已有的类添加新的方法,但是要想在Category里扩展属性就要使用Runtime的Associative,使用Runtime来添加类目的属性。
static void * MyObjectMyCustomPorpertyKey = (void *)@"MyObjectMyCustomPorpertyKey";
@implementation MyObject (ExtendedProperties)
- (id)myCustomProperty
{
return objc_getAssociatedObject(self, MyObjectMyCustomPorpertyKey);
}
- (void)setMyCustomProperty:(id)myCustomProperty
{
objc_setAssociatedObject(self, MyObjectMyCustomPorpertyKey, myCustomProperty, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
@end
以上即是使用Associative把self和myCustomProperty两个对象进行关联,从而达到为类目添加属性的目的。
objc_setAssociatedObject(self, KEY_TAGSTRING, nil,OBJC_ASSOCIATION_RETAIN_NONATOMIC); //可以用来断开Associative
这篇关于Category和Associative的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!