黑马程序员技术交流社区

标题: 单例模式 [打印本页]

作者: wyxuan    时间: 2015-11-25 17:33
标题: 单例模式
+(id)allocWithZone:(struct _NSZone *)zone;{
    //加锁避免同时访问
    @synchronized(self){
        if(instance==nil){
            instance = [super allocWithZone:zone];[/color]
            return instance;
        }
    }
    return instance;
}
报错




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2