调试objc_msgSend崩溃我无法重现

时间:2013-04-29 13:38:44

标签: ios multithreading uialertview sigsegv objc-message-send

我的iOS应用程序中有一些来自bugsense的崩溃报告我无法重现,因此不能进行调试。它每天发生超过200次,所以我觉得它非常严重。

我已经阅读了一些有关NSZombie的内容,但我无法重现崩溃,所以我猜它没用。 这是一份崩溃报告:

SIGSEGV
0 libobjc.A.dylib 0x3aa515b0 objc_msgSend + 15
1 UIKit 0x34d493df + 294
2 UIKit 0x34cae469 + 52
3 QuartzCore 0x34926099 + 160
4 QuartzCore 0x34925ff1 + 64
5 IOMobileFramebuffer 0x36ba1fd7 + 154
6 IOKit 0x33920449 IODispatchCalloutFromCFMessage + 192
7 CoreFoundation 0x32d035db + 118
8 CoreFoundation 0x32d0e173 + 34
9 CoreFoundation 0x32d0e117 + 138
10 CoreFoundation 0x32d0cf99 + 1384
11 CoreFoundation 0x32c7febd CFRunLoopRunSpecific + 356
12 CoreFoundation 0x32c7fd49 CFRunLoopRunInMode + 104
13 GraphicsServices 0x368562eb GSEventRunModal + 74
14 UIKit 0x34b95301 UIApplicationMain + 1120
15 My Bet main (main.m:16) Live 0x000705e7 0x6d000 + 13799

在一些类似的线程上,他们认为问题可以在UIAlertView中,所以这里有一个关于我如何使用它们的例子: 在file.h中

UIAlertView *alertView;

在file.m

-(void)wait{
UIActivityIndicatorView * activityView = [[UIActivityIndicatorView alloc]initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
activityView.frame = CGRectMake(121.0f, 50.0f, 37.0f, 37.0f);
[activityView startAnimating];
alertView = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Searching...", @"") message:nil delegate:nil cancelButtonTitle:nil otherButtonTitles:nil];
[alertView addSubview:activityView];
[alertView show];
[NSThread detachNewThreadSelector:@selector(function) toTarget:self withObject:nil];
}
-(void)function{
// Do some web request
[alertView dismissWithClickedButtonIndex:0 animated:NO];
if(response == nil){
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Timeout", @"") message:NSLocalizedString(@"Connection timeout", @"") delegate:nil cancelButtonTitle:NSLocalizedString(@"Close", @"") otherButtonTitles:nil ];
    [alert show];
}
}

有关我如何解决此问题的任何提示? 感谢

1 个答案:

答案 0 :(得分:2)

可能是崩溃是由于解雇并显示来自其他线程的UIAlertView

永远不要在其他线程中执行UI个任务。 UI任务应该在主线程中完成。

更改function,如:

-(void)function
{
 // Do some web request

 dispatch_async(dispatch_get_main_queue(), ^{
    [alertView dismissWithClickedButtonIndex:0 animated:NO];
    if(response == nil)
    {
       UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Timeout", @"") message:NSLocalizedString(@"Connection timeout", @"") delegate:nil cancelButtonTitle:NSLocalizedString(@"Close", @"") otherButtonTitles:nil ];
    [alert show];
    }
  });
}