懒加载是用到的时候再去加载比如
-(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];
懒加载的简单理解
时间: 2024-10-09 08:01:34