我有一个UICollectionView
包含cell
和header
。我有4个部分,每个部分有3或5个细胞。我的问题是,在我到达TableView
中的下一个标题标题之前,标题标题不会停留。请问我的问题在哪里?
我的代码:
func numberOfSectionsInCollectionView(collectionView: UICollectionView) -> Int {
return 4
}
func collectionView(collectionView: UICollectionView, viewForSupplementaryElementOfKind kind: String, atIndexPath indexPath: NSIndexPath) -> UICollectionReusableView
{
let header = collectionView.dequeueReusableSupplementaryViewOfKind(UICollectionElementKindSectionHeader, withReuseIdentifier: "headersection", forIndexPath: indexPath) as! MenuHeaderCollectionViewCell
header.headerTitle.text = collectionheader[indexPath.row]
return header
}