iOS開發(fā)中 我們經(jīng)常使用懶加載
1.懶加載的好處,讓控件和對象在最需要加載的時(shí)候加載羊精。這樣可以節(jié)省內(nèi)存空間,因?yàn)槲覀円苿?dòng)的設(shè)備資源還是比較寶貴的。所謂懶加載 就是推遲他的getter方法的執(zhí)行。
比如衡未。一個(gè)view的子控件 氓轰,只有當(dāng)這個(gè)view被顯示的時(shí)候才去加載婚夫。一個(gè)tableViewCell中,給他設(shè)置了圖片署鸡,他的content View里面才包含imageView的圖片案糙,只有設(shè)置了textLabel的內(nèi)容,才會(huì)加載這個(gè)textLabel.
//collectionView的數(shù)據(jù)源--屬性申明
@property (nonatomic, strong) NSArray *famouseDoctorArr;
//懶加載
-(NSArray *)famouseDoctorArr{
if (_famouseDoctorArr == nil) {
_famouseDoctorArr =[FDFamousDoctorsTong famousDoctorsTongArr];
}
return _famouseDoctorArr;
}
// collectionView的懶加載屬性申明
@property (nonatomic, strong) UICollectionView *collectionView;
-(UICollectionView *)collectionView{
if (_collectionView == nil) {
_collectionView = [[UICollectionView alloc]initWithFrame:CGRectZerocollectionViewLayout:self.layout];
_collectionView.backgroundColor =[UIColor orangeColor];
// 指定代理
_collectionView.dataSource = self;
_collectionView.delegate = self;
//注冊cell
// [self.collectionView registerClass:[FDIllCollectionViewCell class] forCellWithReuseIdentifier:@"illCell"];
[_collectionView registerNib:[UINib nibWithNibName:@"FDIllCollectionViewCell"bundle:nil] forCellWithReuseIdentifier:@"illCell"];
}
return _collectionView;
}
-----說說我今天在懶加載中遇到的問題//1.0---我的illView中 collection View中的 cell被點(diǎn)擊了靴庆。
-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath{
//把模型傳遞給下一個(gè)控制器
FDFamousDoctorsTong *famouseDoctorTong = self.famouseDoctorArr[indexPath.item];
if (indexPath.item == self.famouseDoctorArr.count - 1) {
NSLog(@"加載公益活動(dòng)界面");
}else{
//跳轉(zhuǎn)到疾病選擇控制器 --通知主頁控制器切換
if ([self.delegate respondsToSelector:@selector(illViewDidSelectItem:)]) {
[self.delegate illViewDidSelectItem:famouseDoctorTong];
}
}
}
// 在獲取這個(gè)illView中控制器中實(shí)現(xiàn)代理方法
pragma mark - 疾病視圖cell被點(diǎn)擊的回調(diào)代理方法 ---執(zhí)行跳轉(zhuǎn)方法 傳遞模型
-(void)illViewDidSelectItem:(FDFamousDoctorsTong *)famouseDodctorTong{
// 從storyBoard里面加載Controller
UIStoryboard *sb =[UIStoryboard storyboardWithName:@"FDIllDetailViewController"bundle:nil];
//FDIllDetailViewController *detailVc =[sb instantiateViewControllerWithIdentifier:@"detailVC"];
FDIllDetailViewController *detailVc = sb.instantiateInitialViewController;
detailVc.title = @"疾病選擇詳情";
detailVc.famousDoctorsTong = famouseDodctorTong;
detailVc.view.backgroundColor =[UIColor colorWithRed:241/255.0 green:241/255.0blue:241/255.0 alpha:1.0];
[self.navigationController pushViewController:detailVc animated:YES];
}
//3.0重寫模型的setter方法給控件的屬性賦值
pragma mark - 從主頁控制器點(diǎn)擊疾病跳轉(zhuǎn)的得到參數(shù)重寫模型的setter方法
-(void)setFamousDoctorsTong:(FDFamousDoctorsTong *)famousDoctorsTong{
_famousDoctorsTong = famousDoctorsTong;
NSLog(@"famousDoctorsTong.title:%@",famousDoctorsTong.title);
self.illTypeLabel.text = [NSString stringWithFormat:@"疾病類型:%@",famousDoctorsTong.title];
}
好了看似沒有什么問題时捌,但是打斷點(diǎn) 發(fā)現(xiàn) self.illTypeLabel 這個(gè)控件是nil
為什么 調(diào)用setter方法的時(shí)候還沒有加載這個(gè)控制器的view,所以子控件也是沒有加載的
----解決辦法 把賦值的代碼方法放到viewDidLoad里面去
-
(void)viewDidLoad {
[super viewDidLoad];//TODO測試
self.treatedMethodView.hidden = YES;
[self.illDetailBtn setBackgroundColor:[UIColor clearColor]];
[self.complicateBtn setBackgroundColor:[UIColor clearColor]];
[self.selectTreatMethodBtn setBackgroundColor:[UIColor clearColor]];self.illTypeLabel.text =[NSString stringWithFormat:@"疾病類型:%@",self.famousDoctorsTong.title];
}
// 最后來一個(gè)總結(jié)
懶加載的優(yōu)點(diǎn)不需將對象的實(shí)例化寫到viewDidLoad炉抒,可以簡化代碼奢讨,增強(qiáng)代碼的可讀性
對象的實(shí)例化在getter方法中,各司其職焰薄,降低耦合性
對系統(tǒng)的內(nèi)存占用率會(huì)減小
viewDidLoad正常加載代碼示例
沒用懶加載的時(shí)候拿诸,從plist獲取數(shù)據(jù),返回一個(gè)數(shù)組塞茅,需要寫在viewDidLoad方法中獲取
@interface ViewController ()@property (nonatomic, strong) NSArray *shopData;@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; _shopData = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"shop" ofType:@"plist"]];}@end
顯而易見佳镜,當(dāng)控制器被加載完成后就會(huì)加載當(dāng)前的shopData,假如shopData是在某些事件被觸發(fā)的時(shí)候才會(huì)被調(diào)用凡桥,沒必要在控制器加載完就去獲取plist文件蟀伸,如果事件不被觸發(fā),代表著shopData永遠(yuǎn)不會(huì)被用到缅刽,這樣在viewDidLoad中加載shopData就會(huì)十分多余啊掏,并且耗用內(nèi)存
懶加載代碼示例
- (void)viewDidLoad { [super viewDidLoad];}- (NSArray *)shopData{ if (!_shopData) { _shopData = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"shop" ofType:@"plist"]]; } return _shopData;}@end
當(dāng)需要用到shopData的時(shí)候,就會(huì)調(diào)用[self shopData]的方法(即getter方法)衰猛,此時(shí)系統(tǒng)會(huì)去調(diào)用getter方法迟蜜,然后再getter方法中獲取plist文件內(nèi)容,然后返回使用(需要注意在getter方法里切勿使用self.shopData啡省,因?yàn)閟elf.shopData會(huì)調(diào)用getter方法娜睛,造成死循環(huán))總結(jié):懶加載即用到時(shí)方去加載對象