带有 ContentInset 的 UICollectionView 不会一直向下滚动 [英] UICollectionView with ContentInset is not Scrolling all the Way Down

查看:21
本文介绍了带有 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 不会一直向下滚动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆