如何在详细视图中使用导航控制器设置 UISplitView

发布于 2024-09-04 11:30:24 字数 381 浏览 3 评论 0原文

所以刚刚完成了本教程:

http://icodeblog。 com/2010/04/05/ipad-programming-tutorial-hello-world/

现在我想做的是将详细视图设置为导航控制器。问题是如何?

我的第一个倾向是让 DetailViewController 扩展 UINavigationContoller。这是最好的方法吗?如果是这样,控制器数组是否会进入 DetailViewController?

欢迎评论、想法、教程。谢谢。

So just went through this tutorial:

http://icodeblog.com/2010/04/05/ipad-programming-tutorial-hello-world/

Now what I want to do is setup the detail view as a navigation controller. The question is how?

My first inclination is to have the DetailViewController extend a UINavigationContoller. Is that the best approach? If so does the array of controllers go into the DetailViewController?

Comments, ideas, tutorials are all welcome. Thank you.

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

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

发布评论

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

评论(3

画中仙 2024-09-11 11:30:24

是的,柴坦亚是对的;您可以将导航控制器添加到来自 xib 的拆分视图,也可以以编程方式创建拆分视图,例如:

self.rootViewController=[[RootViewController alloc]init];
    self.detailViewController=[[FirstDetailViewController alloc]init];


UINavigationController *rootNav=[[UINavigationController alloc]initWithRootViewController:rootViewController];
UINavigationController *detailNav=[[UINavigationController alloc]initWithRootViewController:detailViewController];

self.splitViewController.viewControllers=[NSArray arrayWithObjects:rootNav,detailNav,nil];
self.splitViewController.delegate=self.detailViewController;

现在您将在详细视图中拥有导航控制器。

您可以在此处下载工作代码

Yes, chaitanya is right; You can add navigation controller to split view from xib or you can create split view programmitically, like:

self.rootViewController=[[RootViewController alloc]init];
    self.detailViewController=[[FirstDetailViewController alloc]init];


UINavigationController *rootNav=[[UINavigationController alloc]initWithRootViewController:rootViewController];
UINavigationController *detailNav=[[UINavigationController alloc]initWithRootViewController:detailViewController];

self.splitViewController.viewControllers=[NSArray arrayWithObjects:rootNav,detailNav,nil];
self.splitViewController.delegate=self.detailViewController;

so now your will have navigation controller in detail view.

You can download the working code here.

混浊又暗下来 2024-09-11 11:30:24

更好的方法是在界面 nib 中为详细视图添加导航控制器,就像我们为根视图控制器添加的方式一样。

the better approach would be adding a navigation controller for the detail view in interface nib just like how we will add for root view contrller.

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