设为首页 加入收藏

TOP

[iOS学习笔记]runloop runMode方法调研(一)
2017-10-13 10:28:27 】 浏览:1010
Tags:iOS 学习 笔记 runloop runMode 方法 调研
 
//
//  ViewController.m
//  ThreadTest
//
//  Created by skyko on 16/5/31.
//  Copyright © 2016年 helios. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()

@property (nonatomic, strong) NSThread *thread;

@property (nonatomic, assign) BOOL isAlive;

@property (nonatomic, strong) NSTimer *timer;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    NSLog(@"viewDidLoad");
    self.isAlive = YES;
    
    self.thread = [[NSThread alloc] initWithTarget:self
                                          selector:@selector(workThread:)
                                            object:nil];
    [self.thread setName:@"MyCustomThread"];
    [self.thread start];

    //延迟3s后向线程添加任务
    dispatch_time_t time = dispatch_time(DISPATCH_TIME_NOW, 3 * NSEC_PER_SEC);
    dispatch_after(time, dispatch_get_main_queue(), ^{
        [self performSelector:@selector(handleSomeThing)
                     onThread:self.thread
                   withObject:nil
                waitUntilDone:NO];
    });
}


- (void)workThread:(id)data {
    NSLog(@"workThread");
    NSRunLoop *runloop = [NSRunLoop currentRunLoop];
    [runloop addPort:[NSMachPort port] forMode:NSDefaultRunLoopMode];//不添加这一行的话,在有任务添加前下面的while循环会一直执行,原因见后面解释
    
    while (_isAlive) { //isAlive用于控制该线程的运行周期,当设置isAlive为NO时,该线程执行完当前任务后退出并销毁
        NSLog(@"--->");
        //在设置的时间内执行NSDefaultRunLoopMode模式的任务
        //如果队列中暂时没有任务会一直堵塞直至有任务进入队列
        //任务执行完成后接着循环
        //超时会进入下一次循环
        [runloop runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
        NSLog(@"<---");
    }
}

- (void)handleSomeThing {
    NSLog(@"handleSomeThing before sleep");
    [NSThread sleepForTimeInterval:1.0f];
    NSLog(@"handleSomeThing after sleep");
}

@end

 

运行结果打印:

2016-05-31 11:42:25.020 ThreadTest[1940:76011] viewDidLoad
2016-05-31 11:42:25.020 ThreadTest[1940:76221] workThread
2016-05-31 11:42:25.021 ThreadTest[1940:76221] --->
2016-05-31 11:42:28.311 ThreadTest[1940:76221] handleSomeThing before sleep
2016-05-31 11:42:29.315 ThreadTest[1940:76221] handleSomeThing after sleep
2016-05-31 11:42:29.315 ThreadTest[1940:76221] <---
2016-05-31 11:42:29.315 ThreadTest[1940:76221] --->

 

原文文档介绍:

Runs the loop once, blocking for input in the specified mode until a given date.

//执行loop一次,堵塞等待给定模式的输入直至给定的时间点

Parameters

mode

The mode in which to run. You may specify custom modes or use one of the modes listed in Run Loop Modes.

limitDate

The date until which to block.

Return Value

YES if the run loop ran and processed an input source or if the specified timeout value was reached; otherwise, NO if the run loop could not be started.

//当runloop正在运行并处理了一个输入源或者超时返回YES,否则如果runloop并未启动就返回NO

 

Discussion

If no input sources or timers are attached to the run loop, this method exits immediately and returns NO; otherwise, it returns after either the first input source is processed or limitDate is reached. Manually removing all known input sources and timers from the run loop does not guarantee that the run loop will exit immediately. OS X may install and remove additional input sources as needed to process requests targeted at the receiver’s thread. Those sources could therefore prevent the run loop from exiting.

 如果没有一个输入源或者timer添加到runloop中,该方法会立刻退出并返回NO(这就是上面demo中添加下面代码的原因),否则该方法会

首页 上一页 1 2 下一页 尾页 1/2/2
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇UIimageView GIF动画 下一篇cocoapods(Error)

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目