AMMethod2Implement
AMMethod2Implement copied to clipboard
缩进貌似不是正常的 Tab!!!
自动生成的
- (UILabel *)titleLabel
{
if (!_titleLabel){
_titleLabel = [UILabel new];
_titleLabel.font = Font(15);
_titleLabel.textColor = HEXCOLOR(0x333333);
}
return _titleLabel;
}
我期望的
- (UILabel *)titleLabel
{
if (!_titleLabel){
_titleLabel = [UILabel new];
_titleLabel.font = Font(15);
_titleLabel.textColor = HEXCOLOR(0x333333);
}
return _titleLabel;
}