OC的懶加載設計模式
什麼是懶加載:服務器
懶加載——也稱爲延遲加載,即在須要的時候才加載(效率低,佔用內存小)。所謂懶加載,寫的是其get方法.atom
注意:若是是懶加載的話則必定要注意先判斷是否已經有了,若是沒有那麼再去進行實例化。spa
懶加載的好處設計
(1)沒必要將建立對象的代碼所有寫在viewDidLoad方法中,代碼的可讀性更強code
(2)每一個控件的getter方法中分別負責各自的實例化處理,代碼彼此之間的獨立性強,鬆耦合對象
懶加載的例子:blog
1 #import "MusicTableViewController.h" 2 #import "TRMusicGroup.h" 3 4 @interface MusicTableViewController () 5 6 @property(nonatomic,strong)TRMusicGroup *group; 7 8 @end 9 10 11 @implementation MusicTableViewController 12 13 - (TRMusicGroup *)group 14 { 15 if (!_group) { 16 _group = [TRMusicGroup fakeData][0]; 17 } 18 return _group; 19 }
OC的單例方法進程
實現單例模式有三個條件內存
一、類的構造方法是私有的
二、類提供一個類方法用於產生對象
三、類中有一個私有的本身對象
針對於這三個條件,OC中都是能夠作到的
一、類的構造方法是私有的
咱們只須要重寫allocWithZone方法,讓初始化操做只執行一次
二、類提供一個類方法產生對象
這個能夠直接定義一個類方法
三、類中有一個私有的本身對象
咱們能夠在.m文件中定義一個屬性便可
看一下普通方法寫單例:
TRStudent.h
1 #import <Foundation/Foundation.h> 2 3 @interface TRStudent : NSObject 4 //屬性 5 @property (nonatomic, strong) NSArray *stuArray; 6 //單例方式一 7 + (id)sharedStudent; 8 @end
TRStudent.m
1 #import "TRStudent.h" 2 3 @implementation TRStudent 4 5 static TRStudent *_student = nil; 6 + (id)sharedStudent { 7 if (!_student) { 8 //初始化實例對象Instance Object 9 _student = [[TRStudent alloc] init]; 10 } 11 return _student; 12 } 13 14 - (NSArray *)stuArray { 15 if (!_stuArray) { 16 _stuArray = @[@"shirley", @"bob"]; 17 } 18 return _stuArray; 19 } 20 21 //重寫alloc方法,完善單例的建立 22 + (instancetype)alloc { 23 //父類的alloc方法/返回一個單例對象 24 if (!_student) { 25 _student = [super alloc]; 26 } 27 return _student; 28 } 29 //有的書會重寫這個方法 30 //+ (instancetype)allocWithZone:(struct _NSZone *)zone { 31 // 32 //} 33 34 @end
15年以後大部分都用GCD來寫單例:
TRStuden.h
1 #import <Foundation/Foundation.h> 2 3 @interface TRStudent : NSObject 4 5 //使用gcd一次性任務建立單例 6 + (id)sharedStudentByGCD; 7 8 @end
TRStuden.m
1 #import "TRStudent.h" 2 3 @implementation TRStudent 4 5 static TRStudent *_studentByGCD = nil; 6 + (id)sharedStudentByGCD { 7 8 static dispatch_once_t onceToken; 9 dispatch_once(&onceToken, ^{ 10 _studentByGCD = [[TRStudent alloc] init]; 11 }); 12 13 return _studentByGCD; 14 } 15 16 //重寫alloc方法 17 + (instancetype)alloc { 18 static dispatch_once_t onceToken; 19 dispatch_once(&onceToken, ^{ 20 _studentByGCD = [super alloc]; 21 }); 22 23 return _studentByGCD; 24 } 25 26 @end
總之單例的寫法就是這樣了,類方法裏有一個本身的私有對象。