标签:
懒加载是用到的时候再去加载比如
-(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];
标签:
原文地址:http://www.cnblogs.com/liuxingchen/p/5557224.html