7

如何仅显示一个部分的页脚视图?

正如我发现的那样,我无法通过nil隐藏其他部分的页脚视图,因为它会产生崩溃。

override func collectionView(collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, atIndexPath indexPath: NSIndexPath) -> UICollectionReusableView {

        var v : UICollectionReusableView! = nil
        if kind == UICollectionElementKindSectionHeader {
            let x = collectionView.dequeueReusableSupplementaryViewOfKind(UICollectionElementKindSectionHeader, withReuseIdentifier:reuseHeaderIdentifier, forIndexPath:indexPath) as HouseNameReusableView

            let h = houses[indexPath.section]        
            x.nameLabel.text = h["name"] as? String

            return x

        }else if kind == UICollectionElementKindSectionFooter {
            if indexPath.section == houses.count - 1{
            let x = collectionView.dequeueReusableSupplementaryViewOfKind(UICollectionElementKindSectionFooter, withReuseIdentifier:reuseFooterIdentifier, forIndexPath:indexPath) as FooterCollectionReusableView

            return x
            }
        }
        return v
    }
4

1 回答 1

16

您不能传递nil给其他页脚视图,但您可以给其他页脚视图零高度,这相当于同一件事 - 它们不会出现,因为它们没有高度。

因此,实施collectionView:layout:referenceSizeForFooterInSection:以使所有页脚的高度为零,除了您实际想要查看的页脚。

于 2014-12-31T17:57:20.560 回答