iOS 常驻线程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS 常驻线程相关的知识,希望对你有一定的参考价值。

参考技术A 开启线程需要占用一定的内存空间(默认的情况下,主线程占1M,子线程占用512KB)且每次开辟子线程都会消耗CPU。如果频繁使用子线程的情况下,频繁开辟释放子线程会消耗大量的CPU和内存,而且创建的线程中的任务执行完成之后也就释放了,不能再次利用,所以造成资源和性能的浪费。这种情况下可以通过创建一个常驻线程来解决。

常驻线程通过NSThread与runloop来实现。新建的子线程默认没有开启runloop,因此需要给这个线程添加了一个runloop,并且加了一个NSMachPort端口监听,防止新建的线程由于没有活动直接退出。

只有从runloop中移除我们之前添加的端口,这样runloop没有任何事件,所以直接退出。

基于runloop的线程保活、销毁与通信

iOS蓝牙APP常驻后台

iOS蓝牙类APP常驻后台的实现方法,经过在苹果开发者论坛询问,以及查看苹果开发者文档,最后得出正确的方法为:

1.设置plist,蓝牙权限

2.到target-capabilities-background modes中打开use Bluetooth LE accessories选项

3.创建central manager时设置restore identifier

_bluetoothmanager = [[CBCentralManager alloc] initWithDelegate:self queue:centralQueue options:@{CBCentralManagerOptionRestoreIdentifierKey : CardReadingServiceManagerRestoreIdentifier}];

4.appdelegate的didfinishlaunching方法中,如果检测到对应的key就重新创建Bluetooth manager

for (NSString *blue in centralManagerIdentifiers) {
     if ([blue isEqualToString:CardReadingServiceManagerRestoreIdentifier]) {
           [CardReadingService getInstance].bluetoothmanager = nil;
           [[CardReadingService getInstance] bluetoothmanager];
           break;
        }
   }

5.实现Bluetooth central delegate的willRestoreState方法,开启扫描

- (void)centralManager:(CBCentralManager *)central willRestoreState:(NSDictionary<NSString *,id> *)dict {
    [self startScan];
    [self startAccleerometer];
}

 

以上方法是从开发者文档中找到的,对应的链接

 

但是到iOS12之后,发现不能长期保持后台,不知道是不是系统又对应用后台做了限制,改进方法还在研究中。

 

以上是关于iOS 常驻线程的主要内容,如果未能解决你的问题,请参考以下文章

iOS底层原理 - 常驻线程

iOS: 常驻线程

Runloop线程常驻

Runloop线程常驻

Runloop线程常驻

Runloop线程常驻