我正在使用具有以下模式的后台线程:
// Defined in .h-file as ivar
BOOL backgroundThreadIsAlive;
// .m file
static NSThread *backgroundThread = nil;
- (id)init
{
if (self = [super init])
{
if (backgroundThread == nil)
{
backgroundThreadIsAlive = YES;
backgroundThread = [[NSThread alloc] initWithTarget:self selector:@selector(threadMain:) object:nil];
[backgroundThread start];
}
}
return self;
}
- (void)threadMain:(id)data
{
NSRunLoop *runloop = [NSRunLoop currentRunLoop];
[runloop addPort:[NSMachPort port] forMode:NSDefaultRunLoopMode];
while (backgroundThreadIsAlive)
{
[runloop runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
}
}
我的应用程序有时会因 SIGSEGV 而崩溃
[runloop runMode:NSDefaultRunLoopMode beforeDate:[NSDate distantFuture]];
我正在使用 ARC。崩溃是不可重现的。刚刚发现它,当潜入 testflight 并看到这是我最常遇到的崩溃。它似乎独立于 iOS 版本(我支持 iOS5+)和设备类型出现。
- 有人可以给我一个提示,我做错了什么?
- 有没有更好的解决方案做后台线程?(也许使用 GCD)
- 有没有办法重现这些问题?
感谢您的时间和指导。:)