美文网首页iOS
iOS 属性转字符串

iOS 属性转字符串

作者: 无敌大闸蟹 | 来源:发表于2018-06-08 11:36 被阅读23次

通过 class_copyPropertyList 获取到全部的属性列表  然后通过遍历的方式取出key值   就是我们说的属性的名称

- (NSArray*)cf_KeysWithValues:(LoginResultModel*)model {

    NSMutableArray *array = [[NSMutableArray alloc]init];

    unsignedintcount ,i;

    objc_property_t*propertyArray =class_copyPropertyList([LoginResultModelclass], &count);

    for(i =0; i < count; i++) {

        objc_property_tproperty = propertyArray[i];

        NSString *proKey = [NSString stringWithCString:property_getName(property) encoding:NSUTF8StringEncoding];

        [array addObject:proKey];

    }

    return [array copy];

}

这里我传入一个model  得到的就是我里面的属性列表的数组

相关文章

网友评论

    本文标题:iOS 属性转字符串

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