0

add当他们单击按钮时,我正在使用更多选项更新应用程序。之前,当他们点击它时,某个屏幕会出现模型转换。我可以从 .storyboard 文件轻松做到这一点,但由于 UIActionSheet 没有出现在 .storyboard 文件中,我无法将其链接到另一个场景。我该怎么做呢?

这是我现在拥有的代码:

- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
    switch (buttonIndex) {
        case 1:
            //  where somehow I need to get to the next scene using storyboard
            break;

        default:
            break;
    }
}

这可能无关紧要,但是当调用操作表时,我在 TabBar 中使用了 UITableView。

4

1 回答 1

2

你可以打电话performSegueWithIdentifier:sender:

您可能需要确保首先关闭操作表。

于 2013-04-25T01:59:00.057 回答