码迷,mamicode.com
首页 > 移动开发 > 详细

单例设计模式IOS

时间:2014-11-25 23:23:27      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   sp   on   bs   nbsp   设计   ios   

#import "ZBAccountInfo.h"

 

 

@interface ZBAccountInfo()

 

 

@end

static ZBAccountInfo *sharedObj = nil;

 

@implementation ZBAccountInfo

 

 

+(ZBAccountInfo *)sharedInstance{

 

 

    @synchronized (self)

    {

        if (sharedObj == nil)

        {

          sharedObj=  [[self alloc] init];

        }

    }

    return sharedObj;

 

}

 

 

+(id)allocWithZone:(struct _NSZone *)zone{

 

 

    @synchronized (self) {

        if (sharedObj == nil) {

            sharedObj = [super allocWithZone:zone];

            return sharedObj;

        }

    }

    return sharedObj;

}

 

 

 

 

 

 

 

@end

单例设计模式IOS

标签:io   ar   os   sp   on   bs   nbsp   设计   ios   

原文地址:http://www.cnblogs.com/zhibin/p/4122012.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!