美文网首页iOSIOS知识积累
Objective-C Runtime API的应用

Objective-C Runtime API的应用

作者: lieon | 来源:发表于2021-03-08 23:18 被阅读0次

查看私有成员变量

  • 获取到成员变量的名称,就能通过KVC为私有成员变量设置值,比如
    unsigned int count;
    Ivar *ivars = class_copyIvarList(self, &count);
    for (int i = 0; i < count; i++) {
        // 取出i位置的成员变量
        Ivar ivar = ivars[i];
        NSMutableString *name = [NSMutableString stringWithUTF8String:ivar_getName(ivar)];
    }
    free(ivars);

替换方法实现,交换方法

  • class_replaceMethod
  • mehod_exchangeImplementations
  • 最常见的应用场景就是在分类中,替换本类中的方法实现,添加一些额外的操作
+ (void)load
{
    // 加dispatch_once的目的是为了只调用一次,因为外部可以手动调用+load方法,虽然很另类
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        Class cls = NSClassFromString(@"__NSDictionaryM");
        Method method1 = class_getInstanceMethod(cls, @selector(setObject:forKeyedSubscript:));
        Method method2 = class_getInstanceMethod(cls, @selector(mj_setObject:forKeyedSubscript:));
        method_exchangeImplementations(method1, method2);
        
        Class cls2 = NSClassFromString(@"__NSDictionaryI");
        Method method3 = class_getInstanceMethod(cls2, @selector(objectForKeyedSubscript:));
        Method method4 = class_getInstanceMethod(cls2, @selector(mj_objectForKeyedSubscript:));
        method_exchangeImplementations(method3, method4);
    });
}

- (void)mj_setObject:(id)obj forKeyedSubscript:(id<NSCopying>)key
{
    if (!key) return;
    
    [self mj_setObject:obj forKeyedSubscript:key];
}

- (id)mj_objectForKeyedSubscript:(id)key
{
    if (!key) return nil;
    
    return [self mj_objectForKeyedSubscript:key];
}

Runtime类相关的API

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

Runtime成员变量相关API

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

Runtime属性相关的API

  • 获取一个属性
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)

Runtime与方法相关的API

  • 获得一个实例方法、类方法
Method class_getInstanceMethod(Class cls, SEL name)
Method class_getClassMethod(Class cls, SEL name)
  • 方法实现相关操作
IMP class_getMethodImplementation(Class cls, SEL name) 
IMP method_setImplementation(Method m, IMP imp)
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-基础与应用

    主要内容 Runtime 基础 Runtime 应用 Runtime 基础 Objective-C 语言将决定尽可...

  • Runtime 01 - isa

    Runtime 01 - isa Runtime 又叫运行时,是一套 C 语言的 API,Objective-C ...

  • Objective-C Runtime API的应用

    查看私有成员变量 获取到成员变量的名称,就能通过KVC为私有成员变量设置值,比如 替换方法实现,交换方法 clas...

  • iOS面试-runtime相关

    什么是runtime? runtime 一套c/c++、汇编形成的API,为Objective-C提供运行时功能。...

  • iOS Runtime 参考(一)

    参考方法链接runtime实战应用神经病院Objective-C Runtime入院 相关定义 类在runtime...

  • ios runtime 总结介绍

    runtime介绍: runtime 简称运行时, 是一套纯c编写的API. objective-c是基于c的,为...

  • iOS

    Runtime & RunLoop Objective-C Runtime Objective-C Runtime...

  • Runtime小结

    一、Runtime简介RunTime简称运行时,是一套底层的 C 语言 API。Objective-C是一门动态编...

  • Runtime学习

    一、Runtime定义 runtime即是运行时,是一套纯C的API,Objective-C就是一门动态语言.Ob...

  • dailyLearning -- runtime

    Runtime 简介 消息传递 消息转发 Runtime 应用 Objective-C 是一门动态语言,它会将一些...

网友评论

    本文标题:Objective-C Runtime API的应用

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