本文介绍了UITableView在TabBar下的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个带有自定义单元格的自定义 UITableView (每个单元格高度为70px)。

I have a custom UITableView with custom cells (70px height for each cell).

我也有49px UITabBar ,但它隐藏了tableView。

I have also a 49px UITabBar, but it's hides the tableView.

我试图将这行添加到TableView awakeFromNib 方法,但无效:

I've tried to add this line to the TableView awakeFromNib method but it didn't work:

self.commentsTableView.contentInset = UIEdgeInsetsMake(0, 0, 49, 0)

任何想法我该如何解决?

Any idea how can I solve this?

谢谢!

推荐答案

我不知道您到底做了什么,但尝试这样:

i don't know what you did exactly, but try like this:

self.edgesForExtendedLayout = UIRectEdgeAll;
self.tableview.contentInset = UIEdgeInsetsMake(0.0f, 0.0f, CGRectGetHeight(self.tabBarController.tabBar.frame), 0.0f);

我希望这会起作用。

这篇关于UITableView在TabBar下的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 14:11