如何通过 UIButton 删除 UICollectionViewCell
Posted
技术标签:
【中文标题】如何通过 UIButton 删除 UICollectionViewCell【英文标题】:How to delete a UICollectionViewCell via UIButton 【发布时间】:2017-06-22 01:59:49 【问题描述】:好的,所以我正在尝试使用“-”按钮删除 UICollectionViewCell,但我似乎找不到任何可以帮助我的东西,我只是一个初学者。任何帮助将不胜感激,我也在使用核心数据
【问题讨论】:
看here Set up a UICollectionView delete button in Swift的可能重复 【参考方案1】:您只需删除数据数组的数据并执行tableView.reloadData()
。可能如下。
dataArray.remove(at: indexPath.row)
tableView.reloadData()
【讨论】:
以上是关于如何通过 UIButton 删除 UICollectionViewCell的主要内容,如果未能解决你的问题,请参考以下文章
如果没有内容,如何从 stackview 中删除 UIButton
如何删除多个 UIButton 或动态创建的特定 UIButton?