基于导航的应用程序标签栏
我制作了一个带有多个选项卡栏按钮的选项卡栏应用程序。每个按钮都链接到一个单独的 xib 文件。这适用于带有 UIViewController 的 xib 和带有 UITableViewController 的 xib。但是,它不适用于具有 UINavigationController 的 xib。
左边你可以看到它在 Interface Builder 中的样子,右边是它在模拟器中的样子。
为什么它在模拟器中没有正确显示?
I made a tab bar application with several tab bar buttons. Each button is linked to a separate xib file. This works for a xib with a UIViewController and a xib with a UITableViewController. However, it does not work for a xib with a UINavigationController.
On the left you can see what it looks like in Interface Builder, and on the right is what it looks like in the simulator.
Why isn't it showing up correctly in the simulator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
但看起来它显示正确。您可能只需要向
UITableViewController
添加一些代码即可填充tableView
并设置导航栏的标题。But it looks like it's showing up correctly. You probably just need to add some code to your
UITableViewController
to populate thetableView
and set a title for the navbar.