在模态视图上显示actionSheet时,ios应用程序崩溃

时间:2012-09-13 11:17:16

标签: ios modalviewcontroller uiactionsheet

我有一个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

非常感谢!

0 个答案:

没有答案