阅读背景:

Object-C 获取对象的属性和值_dawuafang

来源:互联网 
@autoreleasepool {
        
        TestObj *obj = [[TestObj alloc]init];
        obj.age = @"22";
        obj.name = @"lisi";
        obj.gender = @"male";
        
        unsigned int count;
        objc_property_t *properties = class_copyPropertyList([obj class], &count);
        for(int i=0;i<count;i++){
            objc_property_t property = properties[i];
            NSString *key = [[NSString alloc]initWithCString:property_getName(property) encoding:NSUTF8StringEncoding];
            //kvc读值
            NSString *value = [obj valueForKey:key];
            NSLog(@"%@->%@",key,value);
        }
    }@autoreleasepool {
        
        TestObj *ob



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: