学科:IOS/KB/Singletons
外观
< Subject:IOS | KB
一个线程安全的单例参考:
+ (MyClass *)sharedInstance {
static MyClass *sharedInstance = nil;
if(sharedInstance == nil) {
@synchronized(self) {
if (sharedInstance == nil)
sharedInstance = [[self alloc] init];
}
}
return sharedInstance;
}