是否有可能拖放整个UICollectionViewSection
。我有6个部分,可重复使用的标题和该部分中的2个单元格。我想通过选择该部分的标题重新排序CollectionView。
func collectionView(collectionView: UICollectionView, moveItemAtIndexPath sourceIndexPath: NSIndexPath,toIndexPath destinationIndexPath: NSIndexPath) {
let temp1 = self.embedded.embeddedItemsArray.count
var temp2 = Array(arrayLiteral: temp1)
}
我无法选择UICollectionViewSection
并拖放。我可以选择标题内的单元格,但不能选择Header / Section本身。