添加TabBar推送单元格并查看[Swift]

时间:2015-11-25 13:59:21

标签: ios swift uitableview uitabbarcontroller tabbar

当我向我的VC添加一个TabBar时,视图中的单元格全部向上移动,覆盖标题下的单元格的一部分。

这是一张图片,显示VC 没有 TabBar:

enter image description here

这是TabBar:

enter image description here

(请不要介意黑屏/视频屏幕。不相关)

当TabBar出现时向上滚动时,"滚动/ UIACtivityView"也消失了。它加载,但它没有活动指示器。

我必须向上滚动才能看到显示名称的图片"已选择"

任何人都知道为什么TabBar会推动整个视图?如果是这样,我该怎么做呢?

任何帮助都意味着很多。

感谢。

1 个答案:

答案 0 :(得分:1)

我正在使用 TabViewController ,我检查了"调整滚动视图插图"在MainStoryboard属性检查器中,它修复了问题。

(选择TabViewController / Root视图,然后调整滚动视图插图)

细胞/视图不再隐藏在标题后面。

Adjust Scroll View Insets定义:

"A boolean value that indicates whether the viewController should automatically adjust its scroll view insets."

我使用此链接作为参考:

UITableView embedded in other view has wrong position of section header

希望能帮助别人!