美文网首页
UITableView Section header chang

UITableView Section header chang

作者: Yang152412 | 来源:发表于2017-01-19 13:29 被阅读225次

参考:http://stackoverflow.com/questions/37206807/swift-ios-9-section-header-change-position-after-reload-data

1、call reloadData() twice

tableView.reloadData()
tableView.reloadData()

2、推荐

self.tableView.reloadData()
self.tableView.layoutIfNeeded() 
self.tableView.beginUpdates()
self.tableView.endUpdates()

DoublereloadData will cause flickering while this solution won't.

相关文章

网友评论

      本文标题:UITableView Section header chang

      本文链接:https://www.haomeiwen.com/subject/zpdibttx.html