我使用的后台线程有以下模式:
// 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)
- 有没有办法重现这些问题?
感谢您的时间和guidiance。 :)