代码改变世界

模型书写规范

2017-01-03 09:52  supper_Ho  阅读(223)  评论(0编辑  收藏  举报

 

//

//  MJHero.m

//  04-英雄展示

//

//  Created by apple on 14-3-30.

//  Copyright (c) 2014年 itcast. All rights reserved.

//

 

#import "MJHero.h"

 

@implementation MJHero

 

+ (instancetype)heroWithDict:(NSDictionary *)dict

{

    return [[self alloc] initWithDict:dict];

}

 

- (instancetype)initWithDict:(NSDictionary *)dict

{

    if (self = [super init]) {

        [self setValuesForKeysWithDictionary:dict];

    }

    return self;

}