在使用didselectitematindexpath处理选择时,是否必须确保使用
cell.select = true
为了让indexpathsforselecteditems工作?
我有一个collectionview,当在“编辑模式”中选中时,我会在每个缩略图周围创建一个红色框。
cell?.backgroundColor = UIColor.redColor()
我想在按下“完成”键时清除这些框。
调用indexpathsforselecteditems只返回一个值,我不确定为什么?(我试过设置cell=selected,但仍然只能得到一个返回)。
最佳答案
在集合视图中将allowsMultipleSelection
设置为true。
关于swift - UICollectionView取消全选,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31124294/