模型书写规范
2017-01-03 09:52 supper_Ho 阅读(226) 评论(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;
}