美文网首页
获取/打印类的属性列表

获取/打印类的属性列表

作者: ShenYj | 来源:发表于2016-09-03 16:53 被阅读143次

xCode 6以前 , 在API中会有私有属性共有属性的划分,而之后的版本中无法在API中查看某一类的私有属性 , 通过运行时的特性可以帮助我们获取某一个类的全部方法、属性、成员变量以及所有的协议, 当我们获取到私有属性后,遍可以通过KVC进行设置

1.导入头文件#import <objc/runtime.h>
2.可以定义一个继承自NSObject的工具类,也可以直接将方法粘贴在所需要的类中直接调用

+ (NSArray *)js_objProperties{
    
    /*
     class_copyIvarList(__unsafe_unretained Class cls, unsigned int *outCount)       成员变量
     class_copyMethodList(__unsafe_unretained Class cls, unsigned int *outCount)     方法
     class_copyPropertyList(__unsafe_unretained Class cls, unsigned int *outCount)   属性
     class_copyProtocolList(__unsafe_unretained Class cls, unsigned int *outCount)   协议
     */
    
    /*      调用运行时方法,取得类的属性列表
     
     返回值 : 所有属性的数组 (是一个C数组指针:C语言中数组的名字就是首元素的地址)
     参数 1 :  要获取的类
     参数 2 :  类属性的个数指针
     */
    unsigned int count = 0;
    objc_property_t *propertyList = class_copyPropertyList([self class], &count);
    
    // 用来存放所有属性的数组
    NSMutableArray *mArr = [NSMutableArray array];
    
    // 遍历所有属性
    for (unsigned int i = 0; i < count; i ++) {
        
        // 1. 从数组中取得所有属性
        objc_property_t property = propertyList[i];
        
        const char *cName = property_getName(property);
        
        NSString *propertyName = [NSString stringWithCString:cName encoding:NSUTF8StringEncoding];
        
        [mArr addObject:propertyName];
        
    }
    
    // C语言中 retain/create/copy 都需要release, 可以option+click方法名,通过API描述中找到释放方法
    // 例如这里的提示: You must free the array with free().
    free(propertyList);
    
    return mArr.copy;
}



/**
 *  打印类的所有属性
 *
 *  @param className 类名
 */
+ (void)js_logPrivatePropertiesWithClass:(NSString *)className{
    
    unsigned int count = 0;
    
    objc_property_t *properties = class_copyPropertyList([NSClassFromString(className) class], &count);
    
    for (int i=0; i<count; i++) {
        
        objc_property_t pty = properties[i];
        
        //获得所有的属性
        const char *cname = property_getName(pty);
        
        NSLog(@"%@",[[NSString alloc] initWithCString:cname encoding:NSUTF8StringEncoding]);
    }
    
    free(properties);
    
}

/**
 *  打印类的所有成员变量
 *
 *  @param className 类名
 */
+ (void)js_logPrivateIvarsWithClass:(NSString *)className{
    
    unsigned int count = 0; //这个是所有属性的个数
    
    //所有属性的数组 ,数组 char[] char *
    Ivar *ivars = class_copyIvarList([NSClassFromString(className) class], &count);
    
    for (int i=0; i<count; i++) {
        
        Ivar ivar = ivars[i];//获取到每一个属性
        
        //获取所有私有属性
        const char *cname = ivar_getName(ivar);//C语言的字符串
        
        NSLog(@"%@",[[NSString alloc] initWithCString:cname encoding:NSUTF8StringEncoding]);
    }
    
    free(ivars);
}

相关文章

  • swift 获取某个类的所有属性

    获取某个类的所有属性,这里举例UIAlertAction 调用下面方法打印出属性列表

  • 获取/打印类的属性列表

    xCode 6以前 , 在API中会有私有属性共有属性的划分,而之后的版本中无法在API中查看某一类的私有属性 ,...

  • iOS中Runtime常用示例

    Runtime的内容大概有:动态获取类名、动态获取类的成员变量、动态获取类的属性列表、动态获取类的方法列表、动态获...

  • iOS-Runtime

    Runtime的内容大概有:动态获取类名、动态获取类的成员变量、动态获取类的属性列表、动态获取类的方法列表、动态获...

  • Swift获取属性列表和ivar列表

    swift 也可以通过运行时获取类的属性列表和 ivar 列表 新建一个model 类 并且添加属性 下面是获取 ...

  • ios中runtime 笔记

    常见方法 1.获取属性列表 2.获取方法列表 3,获取成员变量列表 4,获取协议列表 5,获得类方法

  • C#使用WMI获取打印机以及作业列表

    获取打印机列表 获取作业列表

  • runtime基础

    目前我所了解的Runtime内容大约有:动态获取类名、动态获取类的成员变量、动态获取类的属性列表、动态获取类的方法...

  • 关于在swift4.0中遇到的坑:class_copyPrope

    在swift4.0中使用class_copyPropertyList来获取类里面的属性列表,结果发现获取的列表使用...

  • Swift利用反射获取对象属性列表

    Objective-C中获取类(类对象)的属性列表利用runtimeSwift可以利用反射获取 比起用runtim...

网友评论

      本文标题:获取/打印类的属性列表

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