标签: ios objective-c iphone swift cocoa-touch
我有一个UITableView,其中包含4个不同大小的自定义单元格。
出于某种原因,UITableView的{{1}}没有伸展到“视图之外,然后自动返回到最大位置”,它只是停在最大位置而不是延伸
UITableView
我不知道为什么,有人可以帮助我吗?
谢谢!
答案 0 :(得分:1)
如果通过拉伸表示“弹跳”,则应检查bounces属性并将其设置为true:
bounces
tableView.bounces = true
默认情况下,它通常设置为true,因此您可能已在代码中的某处禁用它。
true