<meter id="pryje"><nav id="pryje"><delect id="pryje"></delect></nav></meter>
          <label id="pryje"></label>

          新聞中心

          EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計應用 > iOS單例模式的實現(xiàn)

          iOS單例模式的實現(xiàn)

          作者: 時間:2016-10-08 來源:網(wǎng)絡(luò) 收藏

          單例是指靜態(tài)分配的實例,而 iphone sdk 中全是這種實例,例如

          本文引用地址:http://www.ex-cimer.com/article/201610/305923.htm

          [UIApplication sharedApplication] 返回一個指向代表應用程序的單例對象的指針。[UIDevice currentDevice] 獲取一個代表所有使用硬件平臺的對象。

          將類方法與單例相結(jié)合,便可以在程序的任何地方訪問靜態(tài)實例,而無需使用指向?qū)ο蟮闹羔樆虮4嫠膶嵗兞?。?chuàng)建類的唯一實例(普通單例)的函數(shù)示例:

          //在很多時候,我們使用某個類的唯一實例。最常見的就是一個程序的主類,以下是以名為 RootViewController 創(chuàng)建的一個單例函數(shù):

          static RootViewController *sharedRootController = nil;

          +(RootViewController *) sharedController{

          @synchronized(self)

          {

          if (sharedRootController == nil)

          {

          sharedRootController = [[[self alloc] init] autorelease];

          }

          }

          return sharedRootController;

          }

          +(id) allocWithZone:(NSZone *)zone

          {

          @synchronized(self)

          {

          if (sharedRootController == nil)

          {

          sharedRootController = [super allocWithZone:zone];

          return sharedRootController;

          }

          }

          return nil;

          }

          代碼說明:

          1、synchronized 這個主要是考慮多線程的程序,這個指令可以將{ } 內(nèi)的代碼限制在一個線程執(zhí)行,如果某個線程沒有執(zhí)行完,其他的線程如果需要執(zhí)行就得等著。

          2、網(wǎng)上搜索的代碼,好像有一個沒有加入 autorelease,我覺得應該需要加。因為如果調(diào)用的函數(shù)沒有release就麻煩了(我覺得,iOS 上的程序,對于創(chuàng)建用于函數(shù)返回值的,都應該考慮 autorelease)。

          3、allocWithZone 這個是重載的,因為這個是從制定的內(nèi)存區(qū)域讀取信息創(chuàng)建實例,所以如果需要的單例已經(jīng)有了,就需要禁止修改當前單例,所以返回 nil。



          關(guān)鍵詞:

          評論


          相關(guān)推薦

          技術(shù)專區(qū)

          關(guān)閉
          看屁屁www成人影院,亚洲人妻成人图片,亚洲精品成人午夜在线,日韩在线 欧美成人 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();