我正在开发一个项目,在从具有空值的控制器返回后应该弹出警报。它确实在模拟器中弹出,但在 iphone 上,应用程序在从控制器返回时冻结并退出。有任何想法吗?
这是我的代码:
- (void)manualBarcodeViewControllerDidFinish:(ManualBarcodeViewController *)controller
{
......
......
else if([barcode isEqualToString:@""])
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"error" message:@"message" delegate:self cancelButtonTitle:@"cancel" otherButtonTitles:@"otherbutton"];
[alert show];
[alert release];
}
}