我有一个UICollectionView
我可以点按并按住一个单元格重新排序:
class ToWatchController: UICollectionViewController, UICollectionViewDelegateFlowLayout {
...
override func collectionView(_ collectionView: UICollectionView, moveItemAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) {
...
}
}
但我想在我单元格的右侧添加一个汉堡包图标,以向用户表明该表格可以重新排序。像这样:
是否有一些“默认”方式可以做到这一点,或者我必须在我的手机右侧手动添加汉堡包图像?
答案 0 :(得分:0)
没有捷径,就像UITableViewCell
一样。向UICollectionViewCell
添加图片的唯一方法是自己添加UIImageView
。