indexPathsForSelectedItems 在 Swift 3 上不返回 IndexPath
Posted
技术标签:
【中文标题】indexPathsForSelectedItems 在 Swift 3 上不返回 IndexPath【英文标题】:indexPathsForSelectedItems not return IndexPath on Swift 3 【发布时间】:2016-11-10 04:33:57 【问题描述】:我正在使用 Swift 3 为选定的项目获取 indexPath
。代码如下所示。
override func prepare(for segue: UIStoryboardSegue, sender: Any?)
let indexPaths = collectionView.indexPathsForSelectedItems!
print(indexPaths)
但是这个打印出空数组,例如[]
,而不是集合视图单元格的选定项数组。如何获取所选单元格的indexPath
行?
【问题讨论】:
你是否取消了选中委托函数中的项目? 你需要展示你的didSelectItemAt indexPath
方法。
我选择了委托功能。但它仍然返回零数组。
@fzlrhmn 在你的问题中添加didSelectItemAt indexPath
的代码。
我知道我的代码出了什么问题。我使用了didDeselectItemAt
而不是didSelectItemAt
。结案。谢谢大家。
【参考方案1】:
我知道我的代码有什么问题。我使用了didDeselectItemAt
而不是didSelectItemAt
。结案。谢谢大家。
【讨论】:
以上是关于indexPathsForSelectedItems 在 Swift 3 上不返回 IndexPath的主要内容,如果未能解决你的问题,请参考以下文章