码迷,mamicode.com
首页 > 其他好文 > 详细

NSRunLoop和NSTimer的小Demo

时间:2016-03-01 14:33:06      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

#import "ViewController.h"

@interface ViewController ()
@property(strong, nonatomic) NSTimer *timer;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    [self addTimer];
}

- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    [self removeTimer];
}

/** 自定义添加定时器的方法*/
- (void)addTimer{
    NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(mySelector) userInfo:nil repeats:YES ];
    
    //改变(添加)定时器的模式,能够同时处理两件事情
    [[NSRunLoop currentRunLoop]addTimer:timer forMode:NSRunLoopCommonModes];
    self.timer = timer;
}

/** 自定义的移除定时器的方法*/
- (void)removeTimer{
    [self.timer invalidate];
    self.timer = nil;
}

/** 自定义的timer响应方法*/
- (void)mySelector{
    NSLog(@"mySelector...");
}

@end

 

NSRunLoop和NSTimer的小Demo

标签:

原文地址:http://www.cnblogs.com/iospp/p/5230610.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!