下面舉個例子:html
1> 定義控件屬性,注意:屬性必須是strong的,示例代碼以下:
數組
@property (nonatomic, strong) NSArray *imageList;
2> 在屬性的getter方法中實現懶加載,示例代碼以下:atom
// 懶加載-在須要的時候,在實例化加載到內存中 - (NSArray *)imageList { // 只有第一次調用getter方法時,爲空,此時實例化並創建數組 if (_imageList == nil) { // File表示從文件的完整路徑加載文件 NSString *path = [[NSBundle mainBundle] pathForResource:@"ImageData" ofType:@"plist"]; NSLog(@"%@", path); _imageList = [NSArray arrayWithContentsOfFile:path]; } return _imageList; }
如上面的代碼,有一個_imageList屬性,若是在程序的代碼中,有屢次訪問_imageList屬性,例以下面spa
self.imageList ; self.imageList ; self.imageList ;
雖然訪問了3次_imageList 屬性,可是當第一次訪問了imageList屬相,imageList數組就不爲空,
當第二次訪問imageList 時 imageList != nil;程序就不會執行下面的代碼xml
NSString *path = [[NSBundle mainBundle] pathForResource:@"ImageData" ofType:@"plist"]; NSLog(@"%@", path); _imageList = [NSArray arrayWithContentsOfFile:path];
就不會再次在PList文件中加載數據了。htm
懶加載的好處:
1> 沒必要將建立對象的代碼所有寫在viewDidLoad方法中,代碼的可讀性更強
2> 每一個屬性的getter方法中分別負責各自的實例化處理,代碼彼此之間的獨立性強,鬆耦合 對象
3>只有當真正須要資源時,再去加載,節省了內存資源。 圖片