如何在tableview底部插入自定义视图?

时间:2016-10-17 09:18:51

标签: ios uitableview

在网络丢失的情况下,我想在表格视图的底部插入自定义视图,但不重叠表格视图。即使用户将手指放在屏幕上也只显示此自定义视图,并且只有在一段时间或网络恢复后才会消失。它喜欢Facebook应用程序的行为。我怎么能这样做?

enter image description here

2 个答案:

答案 0 :(得分:3)

//Give size of view as u want 
let customView = UIView(frame: CGRectMake(0, 0, 200, 50))

//add this view in footer section of tableview
youTableview.tableFooterView = customView

答案 1 :(得分:0)

您可以按照以下屏幕截图设置页脚。

enter image description here