xcode 删除表格中集合视图的特定单元格视图[已关闭]

i2loujxw  于 2023-02-05  发布在  其他
关注(0)|答案(1)|浏览(132)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question

  1. UITableView有两行:第一个是从图库添加图像,第二个是在collectionView中显示水平滚动效果。
    1.这是我的customCollectionView单元格:

1.这是我在viewController中实现的cellForItemAt函数:

1.这些图像存储在一个数组中。
1.我想删除一个特定的图像,其中有一个删除按钮的最右角的图像。
1.如何以适当的方式删除?
1.如果删除成功,我将如何重新加载我的收藏视图?
我正在实现删除一个特定的单元格内的collectionView是嵌入在一个表视图。需要一些指导,以删除它在一个适当的方式。

nbnkbykc

nbnkbykc1#

您可以从图像阵列中删除对象并重新加载集合视图

@objc func handleImageDelete(_ sender: UIButton) {
    imageAttachmentsArray.remove(object: imageAttachmentsArray[sender.tag])
    collectionView.reloadData()
}

相关问题