真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

iOS中NSTimer循環(huán)引用的示例分析

這篇文章將為大家詳細(xì)講解有關(guān)iOS中NSTimer循環(huán)引用的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

創(chuàng)新互聯(lián)服務(wù)項(xiàng)目包括達(dá)川網(wǎng)站建設(shè)、達(dá)川網(wǎng)站制作、達(dá)川網(wǎng)頁(yè)制作以及達(dá)川網(wǎng)絡(luò)營(yíng)銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢(shì)、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,達(dá)川網(wǎng)站推廣取得了明顯的社會(huì)效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到達(dá)川省份的部分城市,未來相信會(huì)繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!

在當(dāng)前控制器(ViewController)的view上添加了一個(gè)自定義的view(LXFTimerView), LXFTimerView在成功創(chuàng)建出來后添加了定時(shí)器NSTimer并加入RunLoop開始工作, 當(dāng)在當(dāng)前控制器里將LXFTimerView移除掉后,定時(shí)器還在工作,而且LXFTimerView里的dealloc并沒有調(diào)用

iOS中NSTimer循環(huán)引用的示例分析 代碼

LXFTimerView.m

#import "LXFTimerView.h"
@interface LXFTimerView()
/** 定時(shí)器 */
@property(nonatomic, weak) NSTimer *timer;
@end

@implementation LXFTimerView
- (instancetype)initWithFrame:(CGRect)frame {
  if (self = [super initWithFrame:frame]) {
    [self addTimer];
  }
  return self;
}

- (void)dealloc {
  NSLog(@"LXFTimerView - dealloc");
  [self removeTimer];
}

#pragma mark - 定時(shí)器方法
/** 添加定時(shí)器方法 */
- (void)addTimer {
  // 創(chuàng)建定時(shí)器
  if (self.timer) { return; }
  self.timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(log) userInfo:nil repeats:YES];
  [[NSRunLoop currentRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];
}
/** 移除定時(shí)器 */
- (void)removeTimer {
  [self.timer invalidate];
  self.timer = nil;
}
- (void)log {
  NSLog(@"定時(shí)器 -- %s", __func__);
}
@end

ViewController.m

#import "ViewController.h"
#import "LXFTimerView.h"
@interface ViewController ()
/** timerView */
@property(nonatomic, weak) LXFTimerView *timerView;
@end

@implementation ViewController
- (void)viewDidLoad {
  [super viewDidLoad];
  LXFTimerView *timerView = [[LXFTimerView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 200)];
  timerView.backgroundColor = [UIColor orangeColor];
  self.timerView = timerView;
  [self.view addSubview:timerView];  
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
  [self.timerView removeFromSuperview];
}
@end

引用關(guān)系

iOS中NSTimer循環(huán)引用的示例分析

問題就出在LXFTimerView與NSTimer之間,在創(chuàng)建定時(shí)器時(shí)執(zhí)行

[NSTimer scheduledTimerWithTimeInterval: target: selector: userInfo: repeats:];

會(huì)將LXFTimerView進(jìn)行強(qiáng)引用,什么?我怎么知道?看下圖

iOS中NSTimer循環(huán)引用的示例分析

翻譯:定時(shí)器保持著對(duì)target的強(qiáng)引用,直到定時(shí)器作廢 那為什么LXFTimerView中的timer屬性要用weak?? 不用著急,下面即將揭曉~

解決方案

讓定時(shí)器指著另一個(gè)對(duì)象,讓那個(gè)對(duì)象來執(zhí)行LXFTimerView中需要執(zhí)行的方法。 引用關(guān)系如下圖所示

iOS中NSTimer循環(huán)引用的示例分析

創(chuàng)建一個(gè)繼承于NSObject的類 LXFWeakTarget,并提供一個(gè)創(chuàng)建定時(shí)器的方法(蘋果官方的方法,對(duì)scheduledTimerWithTimeInterval進(jìn)行轉(zhuǎn)到定義操作【就是command+左鍵】就可以得到) LXFWeakTarget.h

#import 
@interface LXFWeakTarget : NSObject
+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(nullable id)userInfo repeats:(BOOL)yesOrNo;
@end
#import "LXFWeakTarget.h"

@interface LXFWeakTarget()
@property(nonatomic, weak) id target;
@property(nonatomic, assign) SEL selector;
@end

@implementation LXFWeakTarget
+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(nullable id)userInfo repeats:(BOOL)yesOrNo {
  // 創(chuàng)建當(dāng)前類的對(duì)象
  LXFWeakTarget *object = [[LXFWeakTarget alloc] init];
  object.target = aTarget;
  object.selector = aSelector;

  return [NSTimer scheduledTimerWithTimeInterval:ti target:object selector:@selector(execute:) userInfo:userInfo repeats:yesOrNo];
}
- (void)execute:(id)obj {
  [self.target performSelector:self.selector withObject:obj]; 
}
@end

在LXFTimerView.m中導(dǎo)入LXFWeakTarget的頭文件

#import "LXFWeakTarget.h"

將創(chuàng)建定時(shí)器的類改為 LXFWeakTarget

復(fù)制代碼 代碼如下:


self.timer = [LXFWeakTarget scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(log) userInfo:nil repeats:YES];

現(xiàn)在再來執(zhí)行一下程序

iOS中NSTimer循環(huán)引用的示例分析 

最后縷下思路

  1. 我們用一個(gè)LXFWeakTarget來替LXFTimerView執(zhí)行一些操作。

  2. 當(dāng)沒有被定時(shí)器強(qiáng)引用的LXFTimerView從父控件上被移除時(shí),就會(huì)執(zhí)行dealloc方法,LXFTimerView被銷毀。

  3. 將定時(shí)器作廢并設(shè)為nil,這樣定時(shí)器對(duì)LXFWeakTarget的引用也沒有了,LXFWeakTarget也會(huì)被銷毀。

好,那“為什么LXFTimerView中的timer屬性要用weak”這個(gè)問題就不用多加解析了吧。

關(guān)于“iOS中NSTimer循環(huán)引用的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。


當(dāng)前名稱:iOS中NSTimer循環(huán)引用的示例分析
標(biāo)題路徑:http://weahome.cn/article/pcipjs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部