要将UITableViewCell中的UICollectionViewCell所选的索引路径保存到数组中,可以按照以下步骤进行操作:
collectionView(_:didSelectItemAt:)
中,获取选中的索引路径,并将其添加到数组中,例如:func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
selectedIndexPaths.append(indexPath)
}collectionView(_:didDeselectItemAt:)
中,获取取消选中的索引路径,并将其从数组中移除,例如:func collectionView(_ collectionView: UICollectionView, didDeselectItemAt indexPath: IndexPath) {
if let index = selectedIndexPaths.firstIndex(of: indexPath) {
selectedIndexPaths.remove(at: index)
}
}selectedIndexPaths
数组来获取选中的索引路径。这样,你就可以将UITableViewCell中的UICollectionViewCell所选的索引路径保存到数组中了。
关于腾讯云相关产品和产品介绍链接地址,由于要求不能提及具体的云计算品牌商,建议你参考腾讯云的文档和官方网站,了解他们提供的云计算相关产品和服务。
领取专属 10元无门槛券
手把手带您无忧上云