标签:cell .com scroll view logs span UI 多个 star
https://stackoverflow.com/questions/45573829/weird-uitableview-behaviour-in-ios11-cells-scroll-up-with-navigation-push-anima
在你的tablview/controller基类设置
if (@available(ios 11.0,*)) { self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever; }
不要用 `[UIScrollView appearance]
` 的方法, 不生效.
PS: 搜索这个问题的话, 国内的多个文章都是抄的同一篇, 且是错的.
如下是错的.
[iOS11] contentInsetAdjustmentBehavior 问题, push back时, 界面会上下移动.
标签:cell .com scroll view logs span UI 多个 star
原文地址:http://www.cnblogs.com/willbin/p/7802830.html