waynezxcv / Gallop

A framework for build smooth asynchronous iOS APP.
MIT License
746 stars 161 forks source link

ios11,适配问题 #63

Open liuchuan-alex opened 6 years ago

liuchuan-alex commented 6 years ago

点赞,评论, 查看全文和折叠,会出现 屏幕乱跳问题. 单行刷新失效.

CoderFenchHU commented 6 years ago

添加 下面三句代码 完美解决问题 iOS 11 tableView 刷新机制问题

if #available(iOS 11.0, *) { tableView.estimatedRowHeight = 0 tableView.estimatedSectionFooterHeight = 0 tableView.estimatedSectionHeaderHeight = 0 }