我有这个代码:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[alert release];
问题是这段代码在显示警报之前就崩溃了,我已经在较低的 iOS 上对其进行了测试,它可以工作,但在 iOS 6 上它会崩溃。
我有这个代码:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[alert release];
问题是这段代码在显示警报之前就崩溃了,我已经在较低的 iOS 上对其进行了测试,它可以工作,但在 iOS 6 上它会崩溃。