我可以将导航控制器添加到 ModalViewController 中吗?
我想在 iPad 的屏幕中间呈现一个模态视图。该视图将有一个搜索栏和一个表格视图。它将显示搜索结果。这是启动并运行的。
现在我需要添加一个导航控制器,以便在触摸上面的表视图中的一行时,将从右侧推入一个详细视图,以允许用户确定这是否是他想要的项目。
我尝试将导航控制器添加到我的模态视图中,但它没有显示,而且我找不到这方面的教程。
有人可以给我提示吗?
编辑:我开始认为我首先需要推送模式导航控制器,然后将表格视图添加到其中,这是正确的方法吗?如果是这种情况,有人可以提供一些详细信息吗?
I want to present a Modal view in the middle of the screen in on an iPad. This view will have a search bar and a table view. It will present search results. This is up and running.
Now i need to add a navigation controller so that upon touching a row in the above table view, a detail view will be pushed in from the right to allow the user to determine if this is the item he wanted.
I tried adding a navigation controller to my modal view but it doesn't display and i couldn't find a tutorial for this.
Can someone please give me a hint?
EDIT: I'm starting to think that i first need to push a modal navigation controller and then add the tableview to this, is this the correct approach? Can someone please give some details on this if that's the case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。您必须呈现 NavigationController 模式。您的 ViewController 将是 UINavigationController 的 rootViewController。
我在 将 UINavigationController 添加到现有 UIViewController 中发布了一些代码
Yes this is possible. You have to present the NavigationController modal. Your ViewController will be the rootViewController of the UINavigationController.
I posted some code in Adding UINavigationController to existing UIViewController