如何从一个视图转到另一个视图控制器(iPhone)

发布于 2024-11-18 10:26:49 字数 251 浏览 1 评论 0原文

我在视图控制器(基于视图的应用程序)中有一个表视图,一旦用户选择其中一个单元格,它应该加载另一个视图。我尝试了导航控制器,但这导致了巨大的失败,并浪费了 5-6 个小时(当我尝试将 ViewController 推到导航控制器上时,它崩溃了)。是否有办法从一个视图控制器移动到另一个视图控制器?请记住,我需要发送选定的单元格(字符串)

谢谢

编辑:对于那些好奇的人,我创建了另一个项目作为基于导航的应用程序。现在一切正常。

感谢大家的帮助。

I have a table view in a view controller (view based application), once a user selects one of the cells it should load another view.. I tried the navigation controller thing but that resulted in a huge failure along with 5-6 hours wasted (it crashes when I try to pushViewController onto the nav. controller). Is there anyway to move from one view controller to the other? Keeping in mind I need to send over the selected cell (a string)

Thanks

Edit:For those curious, I created another project as a navigation based application. Everything is working now.

Thanks all for the help.

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

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

发布评论

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

评论(1

凶凌 2024-11-25 10:26:49

您想要实现 UITableView 委托方法 didSelectRowAtIndex。下面是一个示例:

- (void)tableView:(UITableView *)aTableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
        DetailViewController *detailViewController = [[DetailViewController alloc] init];
        [detailViewController setData:[tableViewData objectAtIndex:[indexPath row]]];
        [[self navigationController] pushViewController:detailViewController animated:YES];     
        [detailViewController release];
}

在 DetailViewController.m 文件中,完成后,只需使用

[self dismissModalViewControllerAnimated:YES];

将其从堆栈中弹出即可。

You want to implement the UITableView delegate method didSelectRowAtIndex. Here's an example:

- (void)tableView:(UITableView *)aTableView
didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
        DetailViewController *detailViewController = [[DetailViewController alloc] init];
        [detailViewController setData:[tableViewData objectAtIndex:[indexPath row]]];
        [[self navigationController] pushViewController:detailViewController animated:YES];     
        [detailViewController release];
}

In your DetailViewController.m file, once you're finished with it, simply use

[self dismissModalViewControllerAnimated:YES];

to pop it off the stack.

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