包含 UITableView 和 UITabBar 的视图
我正在使用 UINavigationController 在我的应用程序中推送和弹出其他 UIViewController。 在 UIViewController 之一中,我使用 UITabBar 在不同视图之间切换。其中一个视图有 UITableView,我很难在底部显示 tabBar。即使它显示出来,它也会随着 tableCells 上下滚动。 我没有使用 tabbarcontroller 因为苹果文档建议不要将 tabbarcontroller 推到导航控制器堆栈上。
谢谢。
I am using UINavigationController to push and pop other UIViewControllers in my app.
In one of the UIViewControllers I am using UITabBar to switch between different views. One of the view has UITableView and I am having difficulty showing the tabBar at the bottom. Even if it shows up it scrolls up and down with the tableCells.
I didn't use the tabbarcontroller because apple documentation recommends not to push tabbarcontroller on to navigationcontroller stack.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你正在使用 UITableViewController。 UITableViewController 的视图是 tableView 本身,因此当您将选项卡栏添加到视图时,您实际上将其添加到表视图。这就是它随之滚动的原因。
您应该创建一个常规的 UIView,然后将 tableView 和选项卡栏添加到该视图中。
沙尼
I guess that you are using UITableViewController. The View of the UITableViewController is the tableView itself, so when you add the tab bar to the view you actually add it to the table view. that is why it scrolls with it.
you should create a regular UIView, and then add the tableView and the tab bar to that view.
shani