iOS学习笔记4

2016-04-08  本文已影响15人  蠢萌的L君

控件的封装

步骤

// 懒加载例子 重写label的get方法
- (UILabel *)label{
    if (_label == nil){
        UILabel *label = [[UILabel alloc] init];
        label.backgroundColor = [UIColor redColor];
        [self addSubview:label];
        _label = label;
    }
    return _label;
}
上一篇下一篇

猜你喜欢

热点阅读