Gallop icon indicating copy to clipboard operation
Gallop copied to clipboard

ios11,适配问题

Open liuchuan-alex opened this issue 7 years ago • 1 comments

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

liuchuan-alex avatar Sep 22 '17 07:09 liuchuan-alex

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

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

CoderFenchHU avatar Oct 13 '17 02:10 CoderFenchHU