我真的不知道该怎么做。我创建了UIActionSheet
,当我点击一个按钮时它会出现,但我希望在为应用程序选择某个选项时选择一个新的视图控制器。
问问题
1244 次
2 回答
1
您调用 UIActionSheetDelegate 方法(当用户点击按钮时)[self performSegueWithIdentifyer:@"segue_id"];
于 2013-03-18T12:48:52.310 回答
0
( -actionSheet:clickedButtonAtIndex:)的使用Delegate
方法UIActionSheet
#pragma mark - UIActionSheet Delegate Methods
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
if(buttonIndex == 0)
{
// code for Button 1
}
if(buttonIndex == 1)
{
// code for Button 2
}
}
于 2013-03-18T12:48:06.147 回答