如何从一个视图转到另一个视图控制器(iPhone)
我在视图控制器(基于视图的应用程序)中有一个表视图,一旦用户选择其中一个单元格,它应该加载另一个视图。我尝试了导航控制器,但这导致了巨大的失败,并浪费了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要实现
UITableView
委托方法didSelectRowAtIndex
。下面是一个示例:在 DetailViewController.m 文件中,完成后,只需使用
将其从堆栈中弹出即可。
You want to implement the
UITableView
delegate methoddidSelectRowAtIndex
. Here's an example:In your DetailViewController.m file, once you're finished with it, simply use
to pop it off the stack.