用于打开新视图的 UIAlertView 按钮选项

发布于 2024-10-16 22:51:02 字数 211 浏览 10 评论 0原文

我正在创建一个基于选项卡的应用程序。其中一个选项卡是测试,另一个选项卡是结果。

当用户完成所有问题后,将弹出 UIAlertView 消息框,显示“测试已完成”,并显示“确定”按钮以关闭此消息。

我想将此按钮的标题更改为“转到结果”并且可以毫无问题地执行此操作。但是有没有一种方法可以让我在单击此消息框按钮后将用户定向到结果选项卡?

任何帮助将不胜感激。谢谢。

I’m creating a tab based application. One of the tabs is test, and another of these tabs is results.

When the user has completed all the questions a UIAlertView message box pops up saying “Test Finished” and displays a “Ok” button to dismiss this message.

I’m wanting to change the title of this button to “Go to results” and can do this without any issues. But is there a way that enables me to direct the user to the results tab after clicking this message box button?

Any help would be appreciated. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黎歌 2024-10-23 22:51:02

您必须设置 UITabBarController 的 selectedIndex

并且必须在 UIAlertViewDelegate 方法中调用它。所以你的方法可能看起来像这样。

- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
    if (buttonIndex == alertView.cancelButtonIndex) {
        // cancel... do nothing
    }
    else {
        AppDelegate_Shared *appDelegate = [[UIApplication sharedApplication] delegate];
        UITabBarController *tabBarController = appDelegate.tabBarController;
        [tabBarController setSelectedIndex:0];
    }
}

不过,如果您只有一个按钮,则不需要 if/else 之类的东西。

you have to set the selectedIndex of your UITabBarController

and you have to call this in the UIAlertViewDelegate method. So your method could look like this.

- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
    if (buttonIndex == alertView.cancelButtonIndex) {
        // cancel... do nothing
    }
    else {
        AppDelegate_Shared *appDelegate = [[UIApplication sharedApplication] delegate];
        UITabBarController *tabBarController = appDelegate.tabBarController;
        [tabBarController setSelectedIndex:0];
    }
}

although, if you only have one button you don't need the if/else thingy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文