如何在iOS 7中刷新UICollectionViewCell?

前端之家收集整理的这篇文章主要介绍了如何在iOS 7中刷新UICollectionViewCell?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在 Xcode 5开发我的应用程序,并在iOS 7环境下进行调试.

我有一个定制的UICollectionViewLayoutAttributes.

我打算在长时间按下UICollectionViewCell后做一些事情,所以我覆盖UICollectionViewCell.m中的方法

- (void)applyLayoutAttributes:(MyUICollectionViewLayoutAttributes *)layoutAttributes
{
    [super applyLayoutAttributes:layoutAttributes];
    if ([(MyUICollectionViewLayoutAttributes *)layoutAttributes isActived])
    {
        [self startShaking];
    }
    else
    {
        [self stopShaking];
    }
}

在iOS 6或更低版本中,– applyLayoutAttributes:在调用下面的语句后调用.

UICollectionViewLayout *layout = (UICollectionViewLayout *)self.collectionView.collectionViewLayout;
[layout invalidateLayout];

但是,在iOS 7中,– applyLayoutAttributes:即使我重新加载CollectionView也不会被调用.

这是苹果以后会修复的错误,还是我要做点什么?

解决方法

在iOS 7中,您必须覆盖isEqual:在您的UICollectionViewLayoutAttributes子类中以比较您拥有的任何自定义属性.

isEqual的默认实现:不比较您的自定义属性,因此始终返回YES,这意味着-applyLayoutAttributes:永远不会被调用.

尝试这个:

- (BOOL)isEqual:(id)other {
    if (other == self) {
            return YES;
    }
    if (!other || ![[other class] isEqual:[self class]]) {
            return NO;
    }
    if ([((MyUICollectionViewLayoutAttributes *) other) isActived] != [self isActived]) {
        return NO;
    }

    return YES;
}
原文链接:https://www.f2er.com/iOS/329206.html

猜你在找的iOS相关文章