ios 苹果官方的单例(学习)
+ (NetworkManager *)sharedInstance
{
static dispatch_once_t onceToken;
static NetworkManager * sSharedInstance;
dispatch_once(&onceToken;, ^{
sSharedInstance = [[NetworkManager alloc] init];
});
return sSharedInstance;
}
爱code的妖妖

浙公网安备 33010602011771号