gpt4 book ai didi

ios - 修改 contentEdgeInset 后 UINavigationBar 下的 UITableView 滚动指示器

转载 作者:可可西里 更新时间:2023-11-01 03:39:56 27 4
gpt4 key购买 nike

我有一个 UINavigationController,它可以将数据显示为 UICollectionViewUITableView。 iOS 7 自动为 View 层次结构中创建的第一个 UIScrollView 调整 ScrollView 插入。

所以,UICollectionView 没问题,但我必须为 UITableView 设置 contentEdgeInset。在这一行之后

self.tableView.contentInset = UIEdgeInsetsMake(44.0f, 0.0f, 0.0f, 0.0f);

UITableView 中的内容显示良好,但滚动指示器不会在 UINavigationBar 处停止,而是继续在其下方。

如何解决这个问题并在 UINavigationBar 的开头停止滚动指示器?

enter image description here

最佳答案

您还可以按如下方式设置scrollIndicatorInsets:

self.tableView.scrollIndicatorInsets = UIEdgeInsetsMake(44.0f, 0.0f, 0.0f, 0.0f);

顺便说一句,在 iOS 7 上,您应该使用 [self.topLayoutGuide length] 而不是硬编码 44.0f 像素。来自iOS 7 Transition Guide :

The topLayoutGuide and bottomLayoutGuide properties indicate the location of the top or bottom bar edges in a view controller’s view.

关于ios - 修改 contentEdgeInset 后 UINavigationBar 下的 UITableView 滚动指示器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22812172/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com