码迷,mamicode.com
首页 > 移动开发 > 详细

iOS懒加载

时间:2015-05-20 18:24:37      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

懒加载,英文名LazyLoad。也称为延迟加载,即在需要的时候才加载(效率低,占用内存小)。所谓懒加载,写的是其get方法。

  • 不必将创建对象的代码全部写在viewDidLoad方法中,代码的可读性更强。
  • 每个控件的getter方法中分别负责各自的实例化处理,代码彼此之间的独立性强,松耦合。

  • 一定要先判断是否存在。
下面是示例代码
@interface ViewController () <CLLocationManagerDelegate>
@property (nonatomic,strong) CLLocationManager *locMgr;
@end

- (void)viewDidLoad {
    [super viewDidLoad];

    // 开始定位
    [self.locMgr startUpdatingLocation];
}

- (CLLocationManager *)locMgr{
    if (!_locMgr) { //判断是否为空
        self.locMgr = [[CLLocationManager alloc] init];
        // 设置代理
        self.locMgr.delegate = self;
        [self.locMgr requestAlwaysAuthorization];
    }
    return _locMgr;
}

iOS懒加载

标签:

原文地址:http://blog.csdn.net/intheair100/article/details/45873589

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!