懒加载的简单理解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了懒加载的简单理解相关的知识,希望对你有一定的参考价值。
懒加载是用到的时候再去加载比如
-(UITableView *)tableview{
if (!_tableview) {
_tableview = [[UITableView alloc]initWithFrame:[UIScreen mainScreen].bounds];
self.tableview.delegate = self;
self.tableview.dataSource = self;
[self.view addSubview:self.tableview];
}
return _tableview;
}
这就是一个懒加载,调用的话就直接把这个方法用一下就可以了
比如在viewdidload里
[self.tableview reloadData];
以上是关于懒加载的简单理解的主要内容,如果未能解决你的问题,请参考以下文章