如何使操作表按钮打开新视图

发布于 2024-08-16 21:17:46 字数 111 浏览 7 评论 0原文

我有一个使用操作表的 iPhone 应用程序,但我不知道如何让其中一个按钮在按下时打开一个新视图。我知道如何实施操作表 - 这不是问题,问题是打开新视图的实际操作。

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

I have an iPhone app that uses an action sheet but I can't work out how to make one of the buttons open a new view when pressed. I know how to implement the action sheet - that's not a problem, its the actual action of opening the new view that's the issue.

Any help would be greatly appreciated. Thanks.

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

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

发布评论

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

评论(2

旧话新听 2024-08-23 21:17:46

我通常只是创建一个新方法并让操作表来完成它。

例如:

switch (buttonIndex) {
    case 0:
        [self openModalView];
        break;
 }

然后,在您的 openModalView 方法中:

- (void)openModalView {
    MyModalViewController *myController = [[MyModalViewController alloc] init];
    [self presentModalViewController:myController animated:YES];
    [myController release];
}

I usually just create a new method and have the action sheet do it.

For instance:

switch (buttonIndex) {
    case 0:
        [self openModalView];
        break;
 }

Then, in your openModalView method:

- (void)openModalView {
    MyModalViewController *myController = [[MyModalViewController alloc] init];
    [self presentModalViewController:myController animated:YES];
    [myController release];
}
记忆之渊 2024-08-23 21:17:46

在 UIAlertView 的 -didDismissWithButtonIndex 中,实例化新的视图控制器并将其推送到导航堆栈上:

- (void)alertView:(UIAlertView *)alertView 
                 didDismissWithButtonIndex:(NSInteger)buttonIndex
{
    if (buttonIndex == 0)
    {
        NewViewController *controller = [[NewViewController alloc] init];
        [[self navigationController] pushViewController:controller animated:YES];
        [controller release], controller = nil;
    }
}

In the UIAlertView's -didDismissWithButtonIndex, instantiate your new view controller and push it onto the navigation stack:

- (void)alertView:(UIAlertView *)alertView 
                 didDismissWithButtonIndex:(NSInteger)buttonIndex
{
    if (buttonIndex == 0)
    {
        NewViewController *controller = [[NewViewController alloc] init];
        [[self navigationController] pushViewController:controller animated:YES];
        [controller release], controller = nil;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文