上一篇主要介绍了Objective-C的消息机制,这一边中我们介绍常用Runtime库中常用的方法和一些特性
Class object_getClass(id obj)
Class object_setClass(id obj, Class cls)
BOOL object_isClass(id obj)
const char *object_getClassName(id obj)
······
有很多的方法,可以点进去查看,简单介绍几个常用的方法:
1.获取类的方法
//通过方法名获取类方法
class_getClassMethod(Class cls, SEL name)
//获取对象方法
class_getInstanceMethod(Class cls, SEL name)
2.实现两个方法的交换
method_exchangeImplementations(Method m1, Method m2)
3.获得类属性列表
/*
* cls : 类
* outCont: 输出个数
*/
objc_property_t *class_copyPropertyList(Class cls, unsigned int *outCount)
//获取类所有成员变量
Ivar *class_copyIvarList(Class cls, unsigned int *outCount)
/*
两者的区别是
class_copyPropertyList是获取@property下得属性
class_copyIvarList获取全部属性
*/
4.获取属性的名称
const char *property_getName(objc_property_t property)
const char *ivar_getName(Ivar v)
5.获取属性的类型
const char *property_getAttributes(objc_property_t *property)
const char *ivar_getTypeEncoding(Ivar v)
6.动态添加属性set/get方法
/*
* object: 对象
* Key: 设置的属性的Key
* value: 设置属性的值
* policy: 存储策略 (assign 、copy 、 retain就是strong)
*/
objc_setAssociatedObject(id object, const void *key, id value, objc_AssociationPolicy policy)
//通过Key获取属性
id objc_getAssociatedObject(id object, const void *key)
7.获取方法的具体实现
IMP class_getMethodImplementation(Class cls, SEL name)
//返回值为结构体类型
IMP class_getMethodImplementation_stret(Class cls, SEL name)
8.创建一个实现
IMP imp_implementationWithBlock(id block)
9.重新设置方法的实现
IMP method_setImplementation(Method m, IMP imp)
10.其他
/判断类中是否包含某个方法的实现
BOOL class_respondsToSelector(Class cls, SEL sel)
//获取类中的方法列表
Method *class_copyMethodList(Class cls, unsigned int *outCount)
//为类添加新的方法,如果方法该方法已存在则返回NO
BOOL class_addMethod(Class cls, SEL name, IMP imp, const char *types)
//替换类中已有方法的实现,如果该方法不存在添加该方法
IMP class_replaceMethod(Class cls, SEL name, IMP imp, const char *types)
//获取Method中的SEL
SEL method_getName(Method m)
//获取Method中的IMP
IMP method_getImplementation(Method m)
//获取方法的Type字符串(包含参数类型和返回值类型)
const char *method_getTypeEncoding(Method m)
//获取参数个数
unsigned int method_getNumberOfArguments(Method m)
//获取返回值类型字符串
char *method_copyReturnType(Method m)
//获取方法中第n个参数的Type
char *method_copyArgumentType(Method m, unsigned int index)
//获取Method的描述
struct objc_method_description *method_getDescription(Method m)
//设置Method的IMP
IMP method_setImplementation(Method m, IMP imp)
//替换Method
void method_exchangeImplementations(Method m1, Method m2)
//获取SEL的名称
const char *sel_getName(SEL sel)
//注册一个SEL
SEL sel_registerName(const char *str)
//判断两个SEL对象是否相同
BOOL sel_isEqual(SEL lhs, SEL rhs)
//通过块创建函数指针,block的形式为^ReturnType(id self,参数,...)
IMP imp_implementationWithBlock(id block)
//获取IMP中的block
id imp_getBlock(IMP anImp)
//移出IMP中的block
BOOL imp_removeBlock(IMP anImp)
我们把之前Objective-C 属性(2)这篇中的属性参数我们通过上面介绍的方法打印属性类型
@property(nonatomic,copy) NSString *name1; // 1
@property(nonatomic,retain) NSString *name2; // 2
@property(nonatomic,retain,readwrite) NSString *name3; // 3
@property(atomic,retain) NSString *name4; // 4
@property(retain) NSString *name5; // 5
@property(atomic,assign) NSInteger age1; // 6
@property(atomic) NSInteger age2; // 7
@property NSInteger age3; // 8
@property(nonatomic,weak) id delegate; // 9
通过以下代码打印
objc_property_t *propertyList = class_copyPropertyList([Person class], &outCount);
for (int i = 0; i < outCount; i++) {
const char *name = property_getName(propertyList[i]);
const char *attribute = property_getAttributes(propertyList[i]);
NSLog(@"\nname = %s\nattribute = %s", name, attribute);
}
得到输出结果
这里总结以下
都是以T开头
有@存放对象的属性,id类型单一个@;没有@也会对应数据类型如:q、d等
还有会N、V、W、C等表示不同的操作如:现成安全,读写权限,强若引用等等。以下我们总结一张表
字母 | OC | 含义 |
---|---|---|
有R | readonly | 只读 |
无R | readwrite | 读写 |
有N | nonatomic | 线程不安全 |
无N | atomic | 线程安全 |
C | copy | 复制 |
& | strong/retain | 强引用 |
W | weak | 弱引用 |
Sxxx: | setter | set方法 |
Gxxx | getter | get方法 |
Vxxx | var | 实例变量 |
基础知识介绍到这里下一步我们就要进入实战篇了,其实这篇中用到打印类的方法和属性也是Runtime的应用之一。之后介绍方法交换,动态添加属性,动态解析。