您好,登錄后才能下訂單哦!
怎么在iOS中創(chuàng)建與銷毀單例?相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
單例的創(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)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。