- NSTimer- 让定时器在其他线程开启
NSBlockOperation *block = [NSBlockOperation blockOperationWithBlock:^{
// 这种方式创建的timer 必须手动添加到Runloop中去才会被调用
NSTimer *timer = [NSTimer timerWithTimeInterval:2.0 target:self selector:@selector(time) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:timer forMode:NSDefaultRunLoopMode];
// 同时让RunLoop跑起来
[[NSRunLoop currentRunLoop] run];
}];
[[[NSOperationQueue alloc] init] addOperation:block];
[NSTimer scheduledTimerWithTimeInterval:2.0 target:self selector:@selector(run) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] run];
[[NSRunLoop currentRunLoop] addTimer:timer2 forMode:UITrackingRunLoopMode];
- ImageView:显示performSelector
需求
有时候,用户拖拽scrollView的时候,mode:UITrackingRunLoopMode,显示图片,如果图片很大,会渲染比较耗时,造成不好的体验,因此,设置当用户停止拖拽的时候再显示图片,进行延迟操作
- 方法1:设置scrollView的delegate 当停止拖拽的时候做一些事情
- 方法2:使用performSelector 设置模式为default模式 ,则显示图片这段代码只能在RunLoop切换模式之后执行
// 加载比较大的图片时,
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event
{
// inModes 传入一个 mode 数组,这句话的意思是
// 只有在 NSDefaultRunLoopMode 模式下才会执行 seletor 的方法显示图片
[self.imageView performSelector:@selector(setImage:) withObject:[UIImage imageNamed:@"avater"] afterDelay:3.0 inModes:@[NSDefaultRunLoopMode]];
}
效果为:当用户点击之后,下载图片,但是图片太大,不能及时下载。这时用户可能会做些其他 UI 操作,比如拖拽,但是如果用户正在拖拽浏览其他的东西时,图片下载完毕了,此时如果要渲染显示,会造成不好的用户体验,所以当用户拖拽完毕后,显示图片。
这是因为,用户拖拽,处于 UITrackingRunLoopMode 模式下,所以图片不会显示。
3. 常驻线程
搞一个线程一直存在,一直在后台做一些操作 比如监听某个状态, 比如监听是否联网。
- (void)viewDidLoad {
[super viewDidLoad];
// 需求:搞一个线程一直不死,一直在后台做一些操作 比如监听某个状态, 比如监听是否联网。
// 需要在线程中开启一个RunLoop 一个线程对应一个RunLoop 所以获得当前RunLoop就会自己创建RunLoop
NSThread *thread = [[NSThread alloc] initWithTarget:self selector:@selector(run2) object:nil];
self.thread = thread;
[thread start];
}
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
[self performSelector:@selector(run) onThread:self.thread withObject:nil waitUntilDone:NO];
}
- (void)run2
{
NSLog(@"----------");
/*
* 创建RunLoop,如果RunLoop内部没有添加任何Source Timer
* 会直接退出循环,因此需要自己添加一些source才能保持RunLoop运转
*/
[[NSRunLoop currentRunLoop] addPort:[NSPort port] forMode:NSDefaultRunLoopMode];
// [[NSRunLoop currentRunLoop] runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
[[NSRunLoop currentRunLoop] run];
NSLog(@"-----------22222222");
}
来源文章:
RunLoop运行循环机制