iOS开发之自定义一个单例_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > iOS开发之自定义一个单例

iOS开发之自定义一个单例

 2015/4/24 23:06:41  iCocos  程序员俱乐部  我要评论(0)
  • 摘要:iOS开发之自定义一个单例这里我使用宏://.h#definesingle_interface(class)+(class*)shared##class;//.m//\代表下一行也属于宏//##是分隔符#definesingle_implementation(class)\staticclass*_instance;\\+(class*)shared##class\{\if(_instance==nil){\_instance=[[selfalloc]init];\
  • 标签:iOS 一个 开发 自定义

iOS开发之自定义一个单例

这里我使用宏:

// .h
#define single_interface(class)  + (class *)shared##class;

// .m
// \ 代表下一行也属于宏
// ## 是分隔符

  • #define single_implementation(class) \
  • static class *_instance; \
  •  \
  • + (class *)shared##class \
  • { \
  •     if (_instance == nil) { \
  •         _instance = [[self alloc] init]; \
  •     } \
  •     return _instance; \
  • } \
  •  \
  • + (id)allocWithZone:(NSZone *)zone \
  • { \
  •     static dispatch_once_t onceToken; \
  •     dispatch_once(&onceToken, ^{ \
  •         _instance = [super allocWithZone:zone]; \
  •     }); \
  •     return _instance; \
  • }
 当然还有其他更全面的方法,但是上面喝上吗的原理都是一样的,平时使用的实用用上面的就可以。
//单例模式在ARC\MRC环境下的写法有所不同,需要编写2套不同的代码
#if  __has_feature(objc_arc)
//ARC

//重写allocWithZone:方法,在这里创建唯一的实例(注意线程安全)
  • + (id)allocWithZone:(struct _NSZone *)zone
  • {
  •     @synchronized(self) {
  •     if (!_instance) {
  •             _instance = [super allocWithZone:zone];
  •         }
  •     }
  •     return _instance;
  • }
  • //提供1个类方法让外界访问唯一的实例
  • + (instancetype)shareInstance
  • {
  •     @synchronized(self) {
  •         if (!_instance) {
  •             _instance = [[self alloc] init];
  •         }
  •     }
  •     return _instance;
  • }
  • //实现copyWithZone:方法
  • + (id)copyWithZone:(struct _NSZone *)zone
  • {
  •     return _instance;
  • }

#else
//非ARC

 //非ARC中(MRC),单例模式的实现(比ARC多了几个步骤)


//重写allocWithZone:方法,在这里创建唯一的实例(注意线程安全
  • + (id)allocWithZone:(struct _NSZone *)zone
  • {    @synchronized(self) {
  •     if (!_instance) {
  •         _instance = [super allocWithZone:zone];
  •     }
  • }
  •     return _instance;
  • }
  • //提供1个类方法让外界访问唯一的实例
  • + (instancetype)shareInstance
  • {
  •     @synchronized(self) {
  •         if (!_instance) {
  •             _instance = [[self alloc] init];
  •         }
  •     }
  •     return _instance;
  • }
  • //实现copyWithZone:方法
  • + (id)copyWithZone:(struct _NSZone *)zone
  • {
  •     return _instance;
  • }
  •  //实现内存管理方法
  • - (id)retain
  • {
  •     return self;
  • }
  • - (NSUInteger)retainCount
  • {
  •     return 1;
  • }
  •  
  • - (oneway void)release
  • {
  • }
  •  
  •  - (id)autorelease
  • {
  •     return self;
  • }

#endif

 
发表评论
用户名: 匿名