Translate

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; }

沒有留言:

張貼留言