怎么在iOS中創(chuàng)建與銷毀單例?相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)建站!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、微信小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了武宣免費(fèi)建站歡迎大家使用!
單例的創(chuàng)建
單例的創(chuàng)建分為arc與mrc,兩種模式下的創(chuàng)建.
ARC 下的創(chuàng)建
先定義一個(gè)靜態(tài)的instance. static MyClass _instance;
重寫allocWithZone方法.此方法為對(duì)象分配空間必須調(diào)用方法.
定一個(gè)個(gè)share的類方法.能夠被全局調(diào)用的.此方法里需要考慮線程安全問題
如果需要copy,需要遵守NSCopying協(xié)議,以及在copyWithZone中,直接返回self;
例子
static Myclass _instance;
方法一:
+(id)shareInstance{ @synchronized(self){ if(_instance == nil) _instance = [MyClass alloc] init]; } return _instance; }
方法二:
+(id)shareInstance{ static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ if(_instance == nil) _instance = [MyClass alloc] init]; }); return _instance; }
以上兩種方法都是線程安全的.不過蘋果官方現(xiàn)在提倡方法二.
This method exists for historical reasons; memory zones are no longer used by Objective-C. You should not override this method.
//重寫allocWithZone,里面實(shí)現(xiàn)跟方法一,方法二一致就行. +(id)allocWithZone:(struct _NSZone *)zone{ static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ if(_instance == nil) _instance = [MyClass alloc] init]; }); return _instance; }
這個(gè)函數(shù)重寫,是錯(cuò)誤的。請(qǐng)讀者注意。
//保證copy時(shí)相同 -(id)copyWithZone:(NSZone *)zone{ return _instance; }
這樣就是一個(gè)完整的單例,保證怎么創(chuàng)建都是唯一的.
MRC下的創(chuàng)建 創(chuàng)建過程跟ARC下步驟一樣.不過要處理一些內(nèi)存管理的函數(shù).
//不需要計(jì)數(shù)器+1 - (id)retain { return self; } //不需要. 堆區(qū)的對(duì)象才需要 - (id)autorelease { return self; } //不需要 - (oneway void)release { } //不需要計(jì)數(shù)器個(gè)數(shù). 直接返回最大無符號(hào)整數(shù) - (NSUInteger)retainCount { return UINT_MAX; //參照常量區(qū)字符串的retainCount }
這樣就能保證這個(gè)單例不會(huì)被無意釋放.
單例的銷毀
前面講了單例的創(chuàng)建,但是有個(gè)別情況需要銷毀單例.
下面分別從兩種創(chuàng)建方法對(duì)應(yīng)兩種銷毀形式.
方法一:
+(void)attemptDealloc{ [_instance release]; //mrc 需要釋放,當(dāng)然你就不能重寫release的方法了. _instance = nil; }
方法二:
1. 必須把static dispatch_once_t onceToken; 這個(gè)拿到函數(shù)體外,成為全局的.
2.
+(void)attempDealloc{ onceToken = 0; // 只有置成0,GCD才會(huì)認(rèn)為它從未執(zhí)行過.它默認(rèn)為0.這樣才能保證下次再次調(diào)用shareInstance的時(shí)候,再次創(chuàng)建對(duì)象. [_instance release]; _instance = nil; }
看完上述內(nèi)容,你們掌握怎么在iOS中創(chuàng)建與銷毀單例的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
當(dāng)前題目:怎么在iOS中創(chuàng)建與銷毀單例
文章鏈接:http://muchs.cn/article2/gcidoc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、面包屑導(dǎo)航、營(yíng)銷型網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)公司、搜索引擎優(yōu)化、品牌網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)