ios 开发

Runloop使用

2022-12-09  本文已影响0人  iOS小洁

RunLoop

运行循环。在程序运行过程中循环做一些事情

作用:

应用范畴:

RunLoop与线程

每条线程都有唯一的一个与之对应的RunLoop对象

RunLoop保存在一个全局的Dictionary里,线程作为key,RunLoop作为value

线程刚创建时并没有RunLoop对象,RunLoop会在第一次获取它时创建

RunLoop会在线程结束时销毁

主线程的RunLoop已经自动获取(创建),子线程默认没有开启RunLoop

获取RunLoop

// Foundation
[NSRunLoop currentRunLoop]; // 获得当前线程的RunLoop对象
[NSRunLoop mainRunLoop]; // 获得主线程的RunLoop对象

// Core Foundation  
CFRunLoopGetCurrent(); // 获得当前线程的RunLoop对象
CFRunLoopGetMain(); // 获得主线程的RunLoop对象

RunLoop相关类

Core Foundation中关于RunLoop的5个类

image-20220607203745744 image-20220607203712802 image-20220607203727018

CFRunLoopModeRef

常见的2种Mode

CFRunLoopObserverRef

image-20220607204418900

CFRunLoopSourceRef

Source0
触摸事件处理
performSelector:onThread:

Source1
基于Port的线程间通信
系统事件捕捉

CFRunLoopTimerRef

Timers
NSTimer
performSelector:withObject:afterDelay:

CFRunLoopObserverRef

Observers
用于监听RunLoop的状态
UI刷新(BeforeWaiting)
Autorelease pool(BeforeWaiting)

添加Observer监听RunLoop的所有状态

image-20220607204546406

RunLoop的运行逻辑

image-20220607204610636

具体流程:

image-20220607205420166

RunLoop休眠的实现原理

image-20220607205450788

RunLoop在实际开中的应用

线程保活

/** XYJThread **/
@interface XYJThread : NSThread
@end
@implementation XYJThread
- (void)dealloc
{
    NSLog(@"%s", __func__);
}
@end

/** XYJPermenantThread **/
@interface XYJPermenantThread()
@property (strong, nonatomic) XYJThread *innerThread;
@end

@implementation XYJPermenantThread

#pragma mark - public methods
- (instancetype)init
{
    if (self = [super init]) {
        self.innerThread = [[XYJThread alloc] initWithBlock:^{
            // 创建上下文(要初始化一下结构体)
            CFRunLoopSourceContext context = {0};  
            // 创建source
            CFRunLoopSourceRef source = CFRunLoopSourceCreate(kCFAllocatorDefault, 0, &context);
            // 往Runloop中添加source
            CFRunLoopAddSource(CFRunLoopGetCurrent(), source, kCFRunLoopDefaultMode);
            // 销毁source
            CFRelease(source);
            // 启动
            // 第3个参数:returnAfterSourceHandled,设置为true,代表执行完source后就会退出当前
            CFRunLoopRunInMode(kCFRunLoopDefaultMode, 1.0e10, false);
        }];
        
        [self.innerThread start];
    }
    return self;
}

- (void)executeTask:(XYJPermenantThreadTask)task {
    if (!self.innerThread || !task) return;
    [self performSelector:@selector(__executeTask:) onThread:self.innerThread withObject:task waitUntilDone:NO];
}

- (void)stop {
    if (!self.innerThread) return;
    [self performSelector:@selector(__stop) onThread:self.innerThread withObject:nil waitUntilDone:YES];
}

- (void)dealloc {
    [self stop];
}

#pragma mark - private methods
- (void)__stop {
    CFRunLoopStop(CFRunLoopGetCurrent());
    self.innerThread = nil;
}

- (void)__executeTask:(XYJPermenantThreadTask)task {
    task();
}

@end

上一篇 下一篇

猜你喜欢

热点阅读