1、类

  1. 动态创建一个类(参数:父类,类名,额外的内存空间)
  2. Class objc_allocateClassPair(Class superclass, const char *name, size_t extraBytes)
  3. 注册一个类(要在类注册之前添加成员变量)
  4. void objc_registerClassPair(Class cls)
  5. 销毁一个类
  6. void objc_disposeClassPair(Class cls)
  7. 获取isa指向的Class
  8. Class object_getClass(id obj)
  9. 设置isa指向的Class
  10. Class object_setClass(id obj, Class cls)
  11. 判断一个OC对象是否为Class
  12. BOOL object_isClass(id obj)
  13. 判断一个Class是否为元类
  14. BOOL class_isMetaClass(Class cls)
  15. 获取父类
  16. Class class_getSuperclass(Class cls)

2、成员变量

  1. 获取一个实例变量信息
  2. Ivar class_getInstanceVariable(Class cls, const char *name)
  3. 拷贝实例变量列表(最后需要调用free释放)
  4. Ivar *class_copyIvarList(Class cls, unsigned int *outCount)
  5. 设置和获取成员变量的值
  6. void object_setIvar(id obj, Ivar ivar, id value)
  7. id object_getIvar(id obj, Ivar ivar)
  8. 动态添加成员变量(已经注册的类是不能动态添加成员变量的)
  9. BOOL class_addIvar(Class cls, const char * name, size_t size, uint8_t alignment, const char * types)
  10. 获取成员变量的相关信息
  11. const char *ivar_getName(Ivar v)
  12. const char *ivar_getTypeEncoding(Ivar v)

3、属性

  1. 获取一个属性
  2. objc_property_t class_getProperty(Class cls, const char *name)
  3. 拷贝属性列表(最后需要调用free释放)
  4. objc_property_t *class_copyPropertyList(Class cls, unsigned int *outCount)
  5. 动态添加属性
  6. BOOL class_addProperty(Class cls, const char *name, const objc_property_attribute_t *attributes,
  7. unsigned int attributeCount)
  8. 动态替换属性
  9. void class_replaceProperty(Class cls, const char *name, const objc_property_attribute_t *attributes,
  10. unsigned int attributeCount)
  11. 获取属性的一些信息
  12. const char *property_getName(objc_property_t property)
  13. const char *property_getAttributes(objc_property_t property)

4、方法

  1. 获得一个实例方法、类方法
  2. Method class_getInstanceMethod(Class cls, SEL name)
  3. Method class_getClassMethod(Class cls, SEL name)
  4. 方法实现相关操作
  5. IMP class_getMethodImplementation(Class cls, SEL name)
  6. IMP method_setImplementation(Method m, IMP imp)
  7. void method_exchangeImplementations(Method m1, Method m2)
  8. 拷贝方法列表(最后需要调用free释放)
  9. Method *class_copyMethodList(Class cls, unsigned int *outCount)
  10. 动态添加方法
  11. BOOL class_addMethod(Class cls, SEL name, IMP imp, const char *types)
  12. 动态替换方法
  13. IMP class_replaceMethod(Class cls, SEL name, IMP imp, const char *types)
  14. 获取方法的相关信息(带有copy的需要调用free去释放)
  15. SEL method_getName(Method m)
  16. IMP method_getImplementation(Method m)
  17. const char *method_getTypeEncoding(Method m)
  18. unsigned int method_getNumberOfArguments(Method m)
  19. char *method_copyReturnType(Method m)
  20. char *method_copyArgumentType(Method m, unsigned int index)
  21. 选择器相关
  22. const char *sel_getName(SEL sel)
  23. SEL sel_registerName(const char *str)
  24. block作为方法实现
  25. IMP imp_implementationWithBlock(id block)
  26. id imp_getBlock(IMP anImp)
  27. BOOL imp_removeBlock(IMP anImp)