在iOS中使用宏写单例

vb013933 8年前
   <p><strong>本文只介绍ARC情况下的单利</strong></p>    <p>过去一直背不下来单利如何写,就是知道这么回事,也知道通过宏来写单利,但是一直记不住,今天就来记录一下</p>    <pre>  <code class="language-objectivec">- (void)viewDidLoad {      [super viewDidLoad];      SIPerson *person = [[SIPerson alloc] init];      NSLog(@"%@",person);        SIPerson *person1 = [[SIPerson alloc] init];      NSLog(@"%@",person1);    }</code></pre>    <p>创建person,打印,实际上是2个对象。没毛病.</p>    <p>创建方法</p>    <pre>  <code class="language-objectivec">#import "SIPerson.h"    static SIPerson *instance_ = nil;  @implementation SIPerson  ///方法1,快速创建对象  + (instancetype)sharedInstance{      static dispatch_once_t onceToken;      dispatch_once(&onceToken, ^{          instance_ = [[self alloc] init];      });      return instance_;  }    ///方法2.这个方法一定要有,就是alloc] init]方法,一定会调用这个方法  + (instancetype)allocWithZone:(struct _NSZone *)zone{      static dispatch_once_t onceToken;      dispatch_once(&onceToken, ^{          instance_ = [super allocWithZone:zone];      });      return instance_;  }  @end  //此处还应该有一个+ copy方法,因为可能是copy,那么有可能是生成新的方法</code></pre>    <p>方法12都要实现,才能是单利。假如方法2没有实现,通过 sharedInstance 实现的确实是一个单利,但是通过 alloc] init] 有生成了另一个对象</p>    <pre>  <code class="language-objectivec">2016-09-17 14:17:45.086 SharedInstance[9158:611161] <SIPerson: 0x7f9ab260bfe0>  2016-09-17 14:17:45.087 SharedInstance[9158:611161] <SIPerson: 0x7f9ab2686da0></code></pre>    <p>如果你的对象将来可能还要调用 copy (应该声明<NSCopying>协议),那么你应该还要实现一个方法</p>    <pre>  <code class="language-objectivec">- (id)copyWithZone:(NSZone *)zone{      return instance_;  }</code></pre>    <p>copy的时候,一般是生成了一个新的对象,所以不是单利了,但是用的时候比较少,不是特别需要的,可以不实现这个方法,为毛要这样去写?因为他是对象方法, instance_ 里面有值</p>    <pre>  <code class="language-objectivec">[super viewDidLoad];      SIPerson *person = [SIPerson sharedInstance];      NSLog(@"%@",person);        SIPerson *person1 = [[SIPerson alloc] init];      NSLog(@"%@",person1);            SIPerson *person2 = [person1 copy];      NSLog(@"%@",person2);</code></pre>    <p>结果如下</p>    <pre>  <code class="language-objectivec">2016-09-17 14:24:10.555 SharedInstance[9199:615987] <SIPerson: 0x7f8302d07050>  2016-09-17 14:24:10.555 SharedInstance[9199:615987] <SIPerson: 0x7f8302d07050>  2016-09-17 14:24:10.556 SharedInstance[9199:615987] <SIPerson: 0x7f8302d07050></code></pre>    <p><img src="https://simg.open-open.com/show/84e40726d7e4d99e6fcf0604cca5e55b.jpg"></p>    <p>新建文件的步骤</p>    <pre>  <code class="language-objectivec">/**   *  在.h文件中定义的宏,arc   *   *  SISingletonH(name) 这个是宏   *  + (instancetype)shared##name;这个是被代替的方法, ##代表着shared+name 高度定制化   * 在外边我们使用 “SISingletonH(gege)” 那么在.h文件中,定义了一个方法"+ (instancetype)sharedgege",所以,第一个字母要大写   *   *  @return 一个搞定好的方法名   */  #define SISingletonH(name) + (instancetype)shared##name;      /**   *  在.m文件中处理好的宏 arc   *   *  SISingletonM(name) 这个是宏,因为是多行的东西,所以每行后面都有一个"\",最后一行除外,   * 之所以还要传递一个“name”,是因为有个方法要命名"+ (instancetype)shared##name"   *  @return 单利   */  #define SISingletonM(name) \  static SIPerson *instance_ = nil;\  + (instancetype)shared##name{\      static dispatch_once_t onceToken;\      dispatch_once(&onceToken, ^{\          instance_ = [[self alloc] init];\      });\      return instance_;\  }\  + (instancetype)allocWithZone:(struct _NSZone *)zone{\      static dispatch_once_t onceToken;\      dispatch_once(&onceToken, ^{\          instance_ = [super allocWithZone:zone];\      });\      return instance_;\  }\  - (id)copyWithZone:(NSZone *)zone{\      return instance_;\  }</code></pre>    <p>实际使用</p>    <pre>  <code class="language-objectivec">//.h文件  SISingletonH(Default)</code></pre>    <pre>  <code class="language-objectivec">//.m文件  SISingletonM(Default)</code></pre>    <p>都是一句话,都没有符号(定义的时候就给了符号),就这么简单</p>    <p>在实际使用的时候</p>    <pre>  <code class="language-objectivec">[super viewDidLoad];      SIPerson *person = [SIPerson sharedDefault];      NSLog(@"%@",person);        SIPerson *person1 = [[SIPerson alloc] init];      NSLog(@"%@",person1);        SIPerson *person2 = [person1 copy];      NSLog(@"%@",person2);    //打印结果  2016-09-17 14:56:39.508 SharedInstance[9292:633076] <SIPerson: 0x7ff85a51d250>  2016-09-17 14:56:39.508 SharedInstance[9292:633076] <SIPerson: 0x7ff85a51d250>  2016-09-17 14:56:39.508 SharedInstance[9292:633076] <SIPerson: 0x7ff85a51d250></code></pre>    <p><a href="/misc/goto?guid=4959716335805178394" rel="nofollow,noindex">拿来就可以使用的文件地址</a></p>    <p>简单说一下如何定义swift版本的单利, <strong>正常写,没研究过单利</strong></p>    <p><img src="https://simg.open-open.com/show/220e9b859d71163092df057e660762d5.png"></p>    <p>就这样~</p>    <p>摘抄</p>    <p><img src="https://simg.open-open.com/show/35f8b6c160f1cc87320260bf1eb98503.jpg"></p>    <p> </p>    <p> </p>    <p>来自:http://www.jianshu.com/p/71f83c9ad257</p>    <p> </p>