标签栏应用程序中的表格视图
我已经找了好几个星期了,但没有找到 Xcode 4 的教程,展示如何将表视图添加到选项卡栏应用程序。我想知道你能否为我指明正确的方向?
谢谢
I have been looking for weeks now and had no luck trying to find a tutorial for Xcode 4 showing how to add a Table View to a Tab Bar app. I was wondering if you could point me in the right direction?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
任何 TabBarController 教程都应该这样做,因为您将 UIViewController 添加到选项卡栏。对于表视图,只需创建一个 UITableViewController 即可。您应该能够将其添加到选项卡栏控制器...或任何其他视图控制器。例如,如果您发现其他一些教程使用 navigationController 来实现 TabBar ...只需将教程中的 navigationController 部分替换为 UITableViewController 即可。还有大量关于 UItableViewControllers 的文档和教程。
例如,如果您在应用程序委托 didfinishLaunchingWithOptions 中查看此代码。在此之前,创建了 MyTableViewController (UITableViewController) 和其他一些 UIViewController。
然后在添加到选项卡栏中的每个视图控制器中,确保在其 init 中将选项卡栏项添加到它们中
Any TabBarController tutorial should do because you add UIViewControllers to the tab bar. For the table view, simply create a UITableViewController. You should be able to add that to the tab bar controller ... or any other view controller. For example, if you find some other tutorial doing a TabBar with a navigationController ... simply replace the navigationController part of the tutorial with a UITableViewController. There's also plenty of docs and tutorials on UItableViewControllers.
For example, if you look at this code in an app delegate didfinishLaunchingWithOptions. Pior to this, a MyTableViewController was created (UITableViewController) and some other UIViewController.
And then in each of those view controllers that you added to the tabbar, make sure you add the tabbar item to them in their init