面试中总该会有人问到关于runtime的问题,虽已不是个纯native开发者,但还是有必要去整理一下以前的笔记,讲述一个古老的故事,故有此文。
一、已有类添加属性
Category在日常开发中是常规操作,关于已有类中添加属性。 @property
可能并不能为我们正常的创建 实例变量、Setter、Getter 方法。
1.1 使用关联对象
#import <objc/runtime.h>
// 此处为添加属性的getter方法
// _cmd 指的是:当前方法(即@selector(customPropertyMethod))
- (void)customPropertyMethod {
NSString *extendVar = objc_getAssociatedObject(self, _cmd);
if(!extendVar){
objc_setAssociatedObject(self, _cmd, extendVar, OBJC_ASSOCIATION_COPY_NONATOMIC);
}
}
- (void)setCustomPropertyMethod:(NSArray*) param
{
objc_setAssociatedObject(self, @selector(customPropertyMethod), param, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}
1.2 Description
id objc_getAssociatedObject(id object, const void *key);
,上述使用_cmd
代替的部分,需要一个静态指针,故使用_cmd 来代替,既能保证唯一,也省去声明键值的代码。
void objc_setAssociatedObject(id object, const void *key, id value, objc_AssociationPolicy policy);
关于objc_AssociationPolicy 查阅可知,是不同的属性修饰符号,枚举如下。
typedef OBJC_ENUM(uintptr_t, objc_AssociationPolicy) {
OBJC_ASSOCIATION_ASSIGN = 0, /**< Specifies a weak reference to the associated object. */
OBJC_ASSOCIATION_RETAIN_NONATOMIC = 1, /**< Specifies a strong reference to the associated object.
* The association is not made atomically. */
OBJC_ASSOCIATION_COPY_NONATOMIC = 3, /**< Specifies that the associated object is copied.
* The association is not made atomically. */
OBJC_ASSOCIATION_RETAIN = 01401, /**< Specifies a strong reference to the associated object.
* The association is made atomically. */
OBJC_ASSOCIATION_COPY = 01403 /**< Specifies that the associated object is copied.
* The association is made atomically. */
};
二、关于实现
runtime 关于reference associate object 主要涉及下述方法
通过 key-value的形式添加关联对象,在以key的方式获取对象,最后移除关联对象。