美文网首页
自动生成属性

自动生成属性

作者: 苹果API搬运工 | 来源:发表于2016-03-31 10:40 被阅读72次

// 自动生成属性代码

- (void)createPropetyCode
{

    //模型中属性根据字典的key

    //有多少个key,生成多少个属性
    NSMutableString*codes = [NSMutableStringstring];

    //遍历字典
    [self enumerateKeysAndObjectsUsingBlock:^(id  _Nonnull key, id  _Nonnull
value, BOOL * _Nonnull
stop) {

  NSString *code =nil;
 
  NSLog(@"%@",[value class]);

  if ([value isKindOfClass:[NSString class]])
{
          code = [NSString stringWithFormat:@"@property (nonatomic, strong) NSString *%@;",key];

  } else if([value isKindOfClass:NSClassFromString(@"__NSCFBoolean")]) 
{

       code = [NSString stringWithFormat:@"@property (nonatomic, assign) BOOL %@;",key];
  } else if([value isKindOfClass:[NSNumber class]])
{

       code = [NSString stringWithFormat:@"@property (nonatomic, assign) NSInteger %@;",key];
  } else if([value isKindOfClass:[NSArray class]])
{

        code = [NSString stringWithFormat:@"@property (nonatomic, strong) NSArray *%@;",key];

     
  } else if([value isKindOfClass:[NSDictionary class]])
{
        code = [NSString stringWithFormat:@"@property (nonatomic, strong) NSDictionary
*%@;",key];
  }

      // 拼接字符串

     
  [codes appendFormat:@"\n%@\n",code];

 

    }];

   NSLog(@"%@",codes);

}

相关文章

网友评论

      本文标题:自动生成属性

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