常用Runtime API

作者: Gxdy | 来源:发表于2018-09-30 10:39 被阅读0次

    前言:
    本文只是分类列举一些常用Runtime API
    👉一些Runtime 常用场景

    1. 类

    动态创建一个类

    // 参数:父类,类名,额外的内存空间
    Class objc_allocateClassPair(Class superclass, const char *name, size_t extraBytes)
    

    注册一个类

    // 在Class cls = Class objc_allocateClassPair()创建一个类后,
    // 需要注册这个类才能像正常创建的类一样使用
    // 如果要添加成员变量,必须在类注册之前
    void objc_registerClassPair(Class cls) 
    

    销毁一个类

    // 动态创建的类在不需要了的时候需要销毁
    void objc_disposeClassPair(Class cls)
    

    👉说明:上面三个方法都是由objc_开头

    获取isa指向的Class

    Class object_getClass(id obj)
    

    设置isa指向的Class

    // 可以动态修改isa所指向的类(如:isa -> NSNumber ==> isa ->NSString)
    Class object_setClass(id obj, Class cls)
    

    判断一个OC对象是否为Class

    // 区分实例对象与类对象(不能区分类对象与元类对象)
    BOOL object_isClass(id obj)
    

    👉说明:上面三个方法都是由object_开头

    判断一个Class是否为元类

    BOOL class_isMetaClass(Class cls)
    

    获取父类

    Class class_getSuperclass(Class cls)
    

    👉说明:上面两个方法都是由class_开头

    2. 成员变量

    获取一个实例变量的信息

    Ivar class_getInstanceVariable(Class cls, const char *name)
    

    拷贝实例变量列表(最后需要调用free释放

    Ivar *class_copyIvarList(Class cls, unsigned int *outCount)
    

    动态添加成员变量(已经注册的类是不能动态添加成员变量的,必须在注册之前添加

    BOOL class_addIvar(Class cls, const char * name, size_t size, uint8_t alignment, const char * types)
    

    设置和获取成员变量的值(setter、getter)

    void object_setIvar(id obj, Ivar ivar, id value)
    id object_getIvar(id obj, Ivar ivar)
    

    获取成员变量的相关信息

    const char *ivar_getName(Ivar v)  // 名称 
    const char *ivar_getTypeEncoding(Ivar v)   // 类型
    

    3. 属性

    获取一个属性

    objc_property_t class_getProperty(Class cls, const char *name)
    

    拷贝属性列表(最后需要调用free释放

    objc_property_t *class_copyPropertyList(Class cls, unsigned int *outCount)
    

    动态添加属性

    BOOL class_addProperty(Class cls, const char *name, const objc_property_attribute_t *attributes,
                      unsigned int attributeCount)
    

    动态替换属性

    void class_replaceProperty(Class cls, const char *name, const objc_property_attribute_t *attributes,
                          unsigned int attributeCount)
    

    获取属性的一些信息

    const char *property_getName(objc_property_t property)
    const char *property_getAttributes(objc_property_t property)
    

    4. 方法

    获得一个实例方法、类方法

    Method class_getInstanceMethod(Class cls, SEL name)
    Method class_getClassMethod(Class cls, SEL name)
    

    方法实现(IMP)相关操作

    // 通过SEL名称获取方法的实现
    IMP class_getMethodImplementation(Class cls, SEL name) 
    // 修改Method的实现
    IMP method_setImplementation(Method m, IMP imp)
    // 交换两个Method的实现
    void method_exchangeImplementations(Method m1, Method m2) 
    

    拷贝方法列表最后需要调用free释放

    Method *class_copyMethodList(Class cls, unsigned int *outCount)
    

    动态添加方法

    BOOL class_addMethod(Class cls, SEL name, IMP imp, const char *types)
    

    动态替换方法

    IMP class_replaceMethod(Class cls, SEL name, IMP imp, const char *types)
    

    获取方法的相关信息(带有copy需要调用free去释放

    SEL method_getName(Method m)
    IMP method_getImplementation(Method m)
    const char *method_getTypeEncoding(Method m)
    unsigned int method_getNumberOfArguments(Method m)
    char *method_copyReturnType(Method m)
    char *method_copyArgumentType(Method m, unsigned int index)
    

    选择器相关

    const char *sel_getName(SEL sel)
    SEL sel_registerName(const char *str)
    

    用block作为方法实现

    IMP imp_implementationWithBlock(id block)
    id imp_getBlock(IMP anImp)
    BOOL imp_removeBlock(IMP anImp)
    

    相关文章

      网友评论

        本文标题:常用Runtime API

        本文链接:https://www.haomeiwen.com/subject/bngioftx.html