iOS Developer Note
Translate
顯示具有
Singletons
標籤的文章。
顯示所有文章
顯示具有
Singletons
標籤的文章。
顯示所有文章
2014年2月4日 星期二
Singletons
Singleton objects should use a thread-safe pattern for creating their shared instance.
+ (instancetype)sharedInstance { static id sharedInstance = nil; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ sharedInstance = [[self alloc] init]; }); return sharedInstance; }
較舊的文章
首頁
訂閱:
文章 (Atom)