UICollectionView with ContentInset is not Scrolling all the Way Down(带有 ContentInset 的 UICollectionView 不会一直向下滚动)
问题描述
我正在设置 UICollectionView 的内容插入:
I am setting the content inset of a UICollectionView:
[_collectionView setContentInset:UIEdgeInsetsMake(0.f, 0.f, 100.f, 0.f)];
然后我用这个方法以编程方式一直滚动到 UICollectionView 的底部:
Then I am scrolling programmatically all the way to the bottom of the UICollectionView with this method:
- (void)scrollToLastMessageAnimated:(BOOL)animated;
{
if (_messages.count == 0) { return; }
NSUInteger indexOfLastSection = _messagesBySections.count - 1;
NSInteger indexOfMessageInLastSection = [_messagesBySections[indexOfLastSection] count] - 1;
NSIndexPath *path = [NSIndexPath indexPathForItem:indexOfMessageInLastSection
inSection:indexOfLastSection];
[_collectionView scrollToItemAtIndexPath:path
atScrollPosition:UICollectionViewScrollPositionCenteredVertically
animated:animated];
}
它是向下滚动,但是它忽略了contentInset,意味着最后一个单元格在指定的content inset之下:
It is scrolling down, but it is ignoring the contentInset, meaning that the last cells are below the specified content inset:
左图显示了视图出现后它现在的样子.在右图中,我手动向下滚动到最后一条消息.
The left image, shows how it appear now after the view did appear. In the right image, I manually scrolled further down to the last message.
我正在使用 AutoLayout,你知道为什么会这样吗?
I am using AutoLayout, any ideas why this happens?
这是 IB 设置的屏幕截图:
Here is a screenshot of the IB setup:
推荐答案
今天偶然发现了解决方案!
Today, by chance I discovered the solution!
选择您的视图控制器并取消选中调整滚动视图插图"选项.
Select your view controller and uncheck the option "Adjust Scroll View Insets".
如果未选中此选项,iOS 不会自动调整视图的插图(可能还有它的子视图),这给我带来了问题...取消选中它并像这样以编程方式配置滚动插图:
With this option unchecked, iOS does not automatically adjust your insets of the view (and probably its subviews), which caused the problems for me ... Uncheck it and configure your scroll insets like this programmatically:
- (void)configureInsetsOfCollectionView
{
[_collectionView setContentInset: UIEdgeInsetsMake(self.navigationController.navigationBar.bounds.size.height + [UIApplication sharedApplication].statusBarFrame.size.height + DEFAULT_SPACING, 0.f, _keyboardHeight + _toolbar.bounds.size.height + DEFAULT_SPACING, 0.f)];
[_collectionView setScrollIndicatorInsets:UIEdgeInsetsMake(self.navigationController.navigationBar.bounds.size.height + [UIApplication sharedApplication].statusBarFrame.size.height, 0.f, _keyboardHeight + _toolbar.bounds.size.height, 0.f)];
}
这篇关于带有 ContentInset 的 UICollectionView 不会一直向下滚动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:带有 ContentInset 的 UICollectionView 不会一直向下滚动
基础教程推荐
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01