AMMethod2Implement icon indicating copy to clipboard operation
AMMethod2Implement copied to clipboard

缩进貌似不是正常的 Tab!!!

Open zhangqingyv opened this issue 8 years ago • 0 comments

自动生成的

- (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;
}

zhangqingyv avatar May 26 '17 07:05 zhangqingyv