一段程序代码 --- 实现解析字典,自动转换生成属性。

创建一个NSObjcet的分类

//通过解析字典自动生成属性代码
#import 
@interface NSObjcet (Property)

+(void)createPropertyCodeWithDict:(NSDictionary *)dict;
@end
#实现文件
#import "NSObject+Property.h"

@implementation NSObject (Property)

+ (void)createPropertyCodeWithDict:(NSDictionary *)dict{
  // 遍历字典
    [dict enumerateKeysAndObjectsUsingBlock:^(id _Nonnull propertyName, id     _Nonnull value, BOOL *_Nonnull stop){
    // 创建一个可变字符串,add字典每一个key所对应的模型数据
    NSMutableString strM = [NSMutableString string];
    // 属性代码(例如:@property(nonatomic,strong)NSString *name; )
      NSString code;
  // 根据value的类型,判断对象的类型 (这里根据你返回数据的字段进行自行判定)
  if ([value isKindOfClass:NSClassFromString(@"__NSCFString")]){ //string 
      code = [NSSring stringWithFormat:@"@property(nonatomic,strong)NSString *%@;",[propertyName];
  }else if ([value isKindOfClass:NSClassFromString(@"__NSCFNumber")]){ //number 
      code = [NSSring stringWithFormat:@"@property(nonatomic,assign)NSInteger %@;",[propertyName];
  }else if ([value isKindOfClass:NSClassFromString(@"__NSCFArray")]){  //array
      code = [NSSring stringWithFormat:@"@property(nonatomic,strong)NSArray *%@;",[propertyName];
  }else if ([value isKindOfClass:NSClassFromString(@"__NSCFDictionary")]){ //dictionary
      code = [NSSring stringWithFormat:@"@property(nonatomic,strong)NSDictionary *%@;",[propertyName];}

    [strM appendFormat:@"\n%@\n",code];
    NSLog("%@",strM); #这里获取日志
  }];

}
#注意:这个方法只能用于输出,然后你将输出的日志在写入你自己创建的model类当中
#这段代码的作用仅此而已,没有实际用途,只是为了让我们不需要一个一个字段的@property去添加属性
@end
//导入分类 类名调用方法
[NSObject createPropertyCodeWithDict:dict];

日志: 将你的日志复制到对应的model 中

一段程序代码 --- 实现解析字典,自动转换生成属性。_第1张图片
输出日志

这里就完结了,这样可以使我们不必再一个一个的去添加。早点休息。预祝好梦。

你可能感兴趣的:(一段程序代码 --- 实现解析字典,自动转换生成属性。)