OC开发之——SEL(35)
一 概述
- 每个类的方法都存储在类对象中
- 每个方法都有一个与之对应的SEL类型的对象
- 根据一个SEL对象就可以找到方法的地址,进而调用该方法
- SEL类型的定义
typedef struct objc_selector *SEL
;
二 代码实例
2.1 示例类(Person)
1 | //Person.h |
2.2 调用过程
1 | Person *p=[[Person alloc]init]; |
typedef struct objc_selector *SEL
;1 | //Person.h |
1 | Person *p=[[Person alloc]init]; |