Tableview第一部分反弹回来

时间:2017-11-18 18:50:43

标签: ios swift uitableview header

screendump screendump screendump

在TableView(Swift 4.0,Xcode 9)中,第一部分被裁剪(参见第二个屏幕转储)。当你“拉下来”时你可以看到文字仍然存在,但是如果你松开它会反弹(见第一个屏幕转储)。

我尝试添加以下代码:

        func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
           return 15
            }

        func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
           return 18
            }

但这并没有帮助。

有什么想法吗?

谢谢, 扬

1 个答案:

答案 0 :(得分:0)

看起来您在表视图的顶部添加了另一个视图(可能是UITableViewCell)。尝试点击此处的白色区域并将其删除:

enter image description here