美文网首页
利用RunTime获得类的所有成员变量(包括私有)

利用RunTime获得类的所有成员变量(包括私有)

作者: CodingIran | 来源:发表于2016-06-24 22:22 被阅读35次
/** XMG 0726-08
 运行时(Runtime): 
 * 苹果官方一套C语言库
 * 能做很多底层操作(比如访问隐藏的一些成员变量\成员方法....)
 */

拿UITextField举例

+ (void)getIvars
{
    unsigned int count = 0;

    // 拷贝出所有的成员变量列表
    Ivar *ivars = class_copyIvarList([UITextField class], &count);

    for (int i = 0; i<count; i++) {
        // 取出成员变量
        //        Ivar ivar = *(ivars + i);
        Ivar ivar = ivars[i];
    
        // 打印成员变量名字
        XMGLog(@"%s %s", ivar_getName(ivar), ivar_getTypeEncoding(ivar));
    }

    // 释放
    free(ivars);
}

或者也可以这样:

+ (void)getProperties
{
    unsigned int count = 0;
    
    objc_property_t *properties = class_copyPropertyList([UITextField class], &count);

    for (int i = 0; i<count; i++) {
        // 取出属性
        objc_property_t property = properties[i];
    
        // 打印属性名字
        XMGLog(@"%s   <---->   %s", property_getName(property), property_getAttributes(property));
    }

    free(properties);
}

相关文章

网友评论

      本文标题:利用RunTime获得类的所有成员变量(包括私有)

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