#第一组 - (void)setDataDict:(NSDictionary *)dataDict;这种方法优先运行
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
}
return self;
}
- (void)setDataDict:(NSDictionary *)dataDict
_dataDict = dataDict;
}
#第二组 - (void)awakeFromNib; 这种方法优先运行
- (void)awakeFromNib
{
}
- (void)setDataDict:(NSDictionary *)dataDict
_dataDict = dataDict;
}
#第三组 - (void)awakeFromNib;仅仅运行这种方法
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
}
return self;
}
- (void)awakeFromNib
{
}