Gallop
Gallop copied to clipboard
ios11,适配问题
点赞,评论, 查看全文和折叠,会出现 屏幕乱跳问题. 单行刷新失效.
添加 下面三句代码 完美解决问题 iOS 11 tableView 刷新机制问题
if #available(iOS 11.0, *) { tableView.estimatedRowHeight = 0 tableView.estimatedSectionFooterHeight = 0 tableView.estimatedSectionHeaderHeight = 0 }