使用 prefersLargeTitles 和 UITableView 平滑滚动

Posted

技术标签:

【中文标题】使用 prefersLargeTitles 和 UITableView 平滑滚动【英文标题】:Smooth scrolling with prefersLargeTitles and UITableView 【发布时间】:2017-10-04 16:59:19 【问题描述】:

我在使用prefersLargeTitles时遇到了滚动问题并添加了UITableView

如果我在导航控制器中设置 prefersLargeTitles 并且它的根是 UITableViewController 一切都很好,导航大标题的滚动方式与我们在系统应用程序中看到的方式相同(在 ios 11 +).

问题

但是,如果我使用 UIViewController 并在其中添加 UITableView,滚动似乎会有所不同。导航栏的移动比我实际滚动的更多/更快。每当我滚动到刚刚触发它的位置时,它就会隐藏/显示大标题,所以我最终会得到完全不同的感觉。

【问题讨论】:

【参考方案1】:

原来是布局导致了这个问题。

如果 UITableView 使用 Align top to: Safe Area 约束(除了底部,前导和尾随 Safe Area 并且未扩展,则会出现问题下吧。

但是,如果我使用扩展布局,将顶部与superview 对齐,我仍然可以使用UITableView 并获得大标题及其导航栏的正确行为。

edgesForExtendedLayout = .top
extendedLayoutIncludesOpaqueBars = true

或者使用导航栏的isTranslucent = true 来扩展它。

【讨论】:

您能详细说明您的解决方案吗? autoresizing 是什么意思?根本不使用自动布局?混合自动布局和自动调整蒙版?谢谢! 在使用 tableViewController 并将 navBar isTranslucent 设置为 false 时,您也会得到该快照。该答案也解决了它。谢谢

以上是关于使用 prefersLargeTitles 和 UITableView 平滑滚动的主要内容,如果未能解决你的问题,请参考以下文章

iOS 11 prefersLargeTitles 以 uibutton 作为标题

iOS 11 的 Refresh Controller 和 navigationBar 问题将 prefersLargeTitles 设置为 true

UINavigationBar.prefersLargeTitles 打开时的错误 UIRefreshControl 行为

更改导航栏“prefersLargeTitles”时的平滑过渡

prefersLargeTitles 不适用于程序化布局

当 prefersLargeTitles 为 true 时自定义 NavigatioItem TitleView