我有一个 iOS 应用程序,运行良好,并显示模态视图
当加载模式视图并且我调用操作表或自定义弹出窗口时,关闭并打开操作表两次并崩溃,
如果我显示相同的操作表或在直接视图控制器中弹出,看起来很好,
所以我的问题是,如何在模态视图顶部显示操作表但加载到原始视图控制器上?
UIActionSheet *popupQuery = [[UIActionSheet alloc] initWithTitle:@"Title" delegate:self cancelButtonTitle:@"Cancel Button" destructiveButtonTitle:nil otherButtonTitles:@"Other Button 1", @"Other Button 2", nil];
popupQuery.actionSheetStyle = UIActionSheetStyleBlackTranslucent;
[popupQuery showInView:self.view];
[popupQuery release];
那么如何在主 [父] 视图控制器中而不是在 self.view 中显示我的操作表,因为它使我的应用程序崩溃
exc_bad_access
多谢!