首页 > 代码库 > OC中使用单例模式
OC中使用单例模式
1 static Config * instance = nil; 2 +(Config *) Instance 3 { 4 @synchronized(self) 5 { 6 if(nil == instance) 7 { 8 [self new]; 9 }10 }11 return instance;12 }13 14 +(id)allocWithZone:(NSZone *)zone15 {16 @synchronized(self)17 {18 if(instance == nil)19 {20 instance = [super allocWithZone:zone];21 return instance;22 }23 }24 return nil;25 }
OC中使用单例,比如全局配置,全局属性能可以采用此方法,注意要实现allocWithZone方法
OC中使用单例模式
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。