0
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Order"
                                                    message:@"Order Successfully Discontinued."
                                                   delegate:self
                                                 cancelButtonTitle:nil
                                          otherButtonTitles: @"Ok",nil];
//[alertView performSelectorOnMainThread:@selector(show) withObject:nil waitUntilDone:YES];
alertView.tag=TAG_DEV;

[alertView show];



-(void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex{


    if(alertView.tag==TAG_DEV)
    {
        if(buttonIndex==0)
        {

        }
        else
            NSLog(@"Here");

    }
}

这崩溃了。我该如何解决?

4

1 回答 1

0

当您在“objc_msgSend()”上崩溃时,您很可能正在向已释放的对象发送消息。或者你有一个指针,这是正确的,但是有些东西改变了对象的内容。另一个原因可能是使用了一个悬空指针,该指针曾经指向你的对象现在占用的内存。有时 objc_msgSend 会崩溃,因为内存错误更改了运行时自身的数据结构,这会导致接收器对象本身出现问题。

在这种情况下,您需要检查 UIAlertview 的委托在呈现后是否已被释放,因此当警报被解除时,它不会向其委托发送消息,这可能是 nil。另一种选择是呈现警报视图的 UIViewController 在呈现后被释放。请检查警报代表在呈现后是否未释放。

于 2014-02-07T12:00:28.943 回答