可选的 UICollectionView Header

Optional UICollectionView Header

我在 UICollectionViewDataSource 中实施了以下方法,以便 return 我的 UICollectionView 部分的 header。

但是,如果 hasOthers 为真,我只想 return 一个 header 视图。在这种情况下,下面的代码会抛出以下异常:

Exception NSException * "the view returned from -collectionView:viewForSupplementaryElementOfKind:atIndexPath (UICollectionElementKindSectionHeader,<NSIndexPath: 0xaa02564b411fe771> {length = 2, path = 0 - 0}) was not retrieved by calling -dequeueReusableSupplementaryViewOfKind:withReuseIdentifier:forIndexPath: or is nil (<UICollectionReusableView: 0x7ff43f577700; frame = (0 0; 0 0); layer = <CALayer: 0x6000026484a0>>)" 0x000060000321f240

我也不能 return nil 从这个方法,因为它没有 return 一个 Optional.

func collectionView(_ collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, at indexPath: IndexPath) -> UICollectionReusableView {
    if kind == UICollectionView.elementKindSectionHeader {
        if !hasOthers {
            return UICollectionReusableView()
        }
        if let sectionHeader = collectionView.dequeueReusableSupplementaryView(ofKind: kind, withReuseIdentifier: "header", for: indexPath) as? OrderCVHeaderView {
            sectionHeader.backgroundColor = .white
            return sectionHeader
        }
    }
    return UICollectionReusableView()
}

我在实现时遵循了这个例子:

只有当 hasOthers 为真时,我如何 return 一个可选的 header?

文档说:此方法必须始终 return 一个有效的视图对象。如果在特定情况下不想要补充视图,则布局对象不应为该视图创建属性。或者,您可以通过将相应属性的 isHidden 属性 设置为 true 或将属性的 alpha 属性 设置为 0 来隐藏视图。要在流式布局中隐藏页眉和页脚视图,您还可以将这些视图的宽度和高度设置为 0。