所谓“果冻效果”,指的是到了顶部或者底部后,还能再拉一截那个效果。
tableView.bounces = false
[......]
ios的UITableView禁用果冻效果
Leave a reply
所谓“果冻效果”,指的是到了顶部或者底部后,还能再拉一截那个效果。
tableView.bounces = false
[......]
tableView.separatorStyle = UITableViewCellSeparatorStyle.SingleLine
tableView.tableFooterView = UIView(frame: CGRect(x: 0, y: 0, width: 10, height: 1))
可以参考这个帖子:http://www.cocoachina.com/bbs/read.php?tid-253992.html[......]