UITableView 重写 UINavigationBar
我正在实现两个导航栏,两个导航栏下方都有一个表格视图。我现在遇到的唯一问题是,每当加载视图时,表视图就会显示在导航栏上。我已经在界面生成器中缩放了 uitableview,以使视图显示两个导航栏,并在两个导航栏下方放置一个表格视图。关于如何解决这个问题有什么建议吗?
I am implementing two navigation bars with a table view underneath both of the bars. The only problem i am having right now is that whenever the view gets loaded, the table view gets displayed over the navigation bars. I have scaled the uitableview in the interface builder to have the view show two navigation bars with a table view fitting below both. Any suggestions on how to fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前尚不清楚你在这里问什么。导航栏和表格视图是并排的还是什么?值得注意的是,仅在 Interface Builder 中的视图上设置“顶栏”属性只会设置视图的默认大小 - 您需要手动设置导航栏(或导航控制器)。也就是说,如果您解释一下您想要通过双表视图/导航栏设置来完成什么,将会有所帮助;这不是 iPhone 上的典型 UI 模式,而在 iPad 上,此类内容通常通过分割视图控制器来实现。
It’s not clear what you’re asking here. Are the navigation bars and table views side-by-side, or what? It’s worth noting that just setting the “Top Bar” property on a view in Interface Builder only sets the default size of the view—you’ll need to set up your navigation bar (or navigation controller) manually. That said, it’d help if you explained what you’re trying to accomplish with a dual-tableview/navigation-bar setup; it’s not a typical UI pattern on the iPhone, and on the iPad such things are usually implemented with a split-view controller.