我有我的主视图控制器,点击一个按钮会弹出一个操作表。我想要点击其中的一个选项来显示一个操作表。然而,尽管我进行了所有的搜索,但我似乎无法弄清楚。
我有以下代码:
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
NSString *buttonTitle = [actionSheet buttonTitleAtIndex:buttonIndex];
if ([buttonTitle isEqualToString:@"Text"]) {
AddTextViewController *addTextViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"addTextViewController"];
}
现在我实例化了视图控制器,我不知道该怎么做。