我有一个显示图像网格的集合视图。它允许用户选择最多三个图像通过电子邮件发送给自己。当用户点击一个单元格(图像)时,它会突出显示黄色并将文件名添加到数组中,如果再次点击它会取消选择,则会删除突出显示并从阵列中删除图像。
用户发送电子邮件后,我使用MFMailComposeResult委托从数组中删除项目,但我无法弄清楚如何从单元格中删除黄色高光。希望有人可以提供帮助。感谢。
我在didSelectItemAt和didDeselectItemAt函数中添加图像的文件名。
func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
let fileName = filenames[indexPath.item]
selectedFileNames.append(fileName)
}
func collectionView(_ collectionView: UICollectionView, didDeselectItemAt indexPath: IndexPath) {
let fileName = filenames[indexPath.item]
if let index = selectedFileNames.index(of: fileName) {
selectedFileNames.remove(at: index)
}
}
并且我突出显示了我的UICollectionViewCell类中的单元格
override var isSelected: Bool {
didSet {
self.layer.borderWidth = 3.0
self.layer.borderColor = isSelected ? UIColor.yellow.cgColor : UIColor.clear.cgColor
}
}
这里发送电子邮件的是使用代理
的代码func mailComposeController(_ controller: MFMailComposeViewController, didFinishWith result: MFMailComposeResult, error: Error?) {
controller.dismiss(animated: true)
if result == MFMailComposeResult.sent {
print("emailed Photos")
self.selectedFileNames.removeAll()
self.fullSizeSharableImages.removeAll()
}
}
知道如何清除突出显示的细胞吗?
答案 0 :(得分:8)
对于每个选定的索引路径,您都希望在集合视图上调用deselectItem(at indexPath: IndexPath, animated: Bool)
。
Fortunatelly,UICollectionView
有一个列出所选索引路径的属性。因此,在mailComposeController(_: didFinishWith:)
中,您可以写:
collectionView.indexPathsForSelectedItems?
.forEach { self.collectionView.deselectItem(at: $0, animated: false) }
答案 1 :(得分:0)
比tomahh更好的解决方案,但您可以致电
python -m memory_profiler example.py
它将清除选择