1. 程式人生 > >ios 通過runtime 獲取屬性列表並修改變數值

ios 通過runtime 獲取屬性列表並修改變數值

JSONModel第三方框架, 向伺服器發起一個請求, 返回後的資料直接就是一個可用的Model。

其中核心技術使用的便是runtime的反射機制,通過runtime將解析好的json資料直接存放到了我們的物件模型中。

以下為自己寫的一個測試demo,實現了獲取屬性列表並進行改值

/** 獲取屬性列表 */
-(void)getProperties{
    u_int count = 0;
    objc_property_t *properties = class_copyPropertyList([self class], &count);
    
    for (int i = 0; i < count; i++) {
        const char *propertyName = property_getName(properties[i]);
        const char *attributes = property_getAttributes(properties[i]);
        NSString *str = [NSString stringWithCString:propertyName encoding:NSUTF8StringEncoding];
        NSString *attributesStr = [NSString stringWithCString:attributes encoding:NSUTF8StringEncoding];
        NSLog(@"propertyName : %@", str);
        NSLog(@"attributesStr : %@", attributesStr);
    }
}
/** 修改變數 */
- (id)updateVariable
{
    //獲取當前類
    id theClass = [self class];
    //初始化
    id otherClass = [[theClass alloc] init];
    
    unsigned int count = 0;
    //獲取屬性列表
    Ivar *members = class_copyIvarList([otherClass class], &count);
    
    //遍歷屬性列表
    for (int i = 0 ; i < count; i++) {
        Ivar var = members[i];
        //獲取變數名稱
        const char *memberName = ivar_getName(var);
        //獲取變數型別
        const char *memberType = ivar_getTypeEncoding(var);
        
        NSLog(@"%s----%s", memberName, memberType);
        
        Ivar ivar = class_getInstanceVariable([otherClass class], memberName);
        
        NSString *typeStr = [NSString stringWithCString:memberType encoding:NSUTF8StringEncoding];
        //判斷型別
        if ([typeStr isEqualToString:@"@\"NSString\""]) {
            //修改值
            object_setIvar(otherClass, ivar, @"abc");
        }else{
            object_setIvar(otherClass, ivar, [NSNumber numberWithInt:99]);
        }
    }
    return otherClass;
}