model的所有属性,把属性和值转化为字典

#pragma mark - runingTime 黑魔法  获取对象所有属性  把属性和对应的值转化为字典
//获取对象的所有属性
- (NSArray *)getAllProperties
{
    u_int count;
    objc_property_t *properties  =class_copyPropertyList([self class], &count);
    NSMutableArray *propertiesArray = [NSMutableArray arrayWithCapacity:count];
    for (int i = 0; i

你可能感兴趣的:(model的所有属性,把属性和值转化为字典)