gpt4 book ai didi

ios - 如何将移除附件添加到自定义单元格?

转载 作者:可可西里 更新时间:2023-11-01 01:37:11 25 4
gpt4 key购买 nike

我想为自定义单元格添加“删除附件”。 enter image description here

我覆盖了 canEditRowAtIndexPath 方法:

// Override to support conditional editing of the table view.
override func tableView(tableView: UITableView, canEditRowAtIndexPath indexPath: NSIndexPath) -> Bool {
// Return false if you do not want the specified item to be editable.
return true
}

在这里设置属性(但是在哪里删除附件??):

enter image description here

但这对我不起作用。

最佳答案

为了获得编辑功能,您需要告诉 TableView 进行编辑。某处(可能在 UIBarButtonItem 的操作中):

tableView.setEditing(true, animated: true)

为了移除编辑功能,您需要告诉 TableView 停止编辑。在其他地方(可能在同一个 Action 中):

tableView.setEditing(false, animated: true)

请注意,editButtonItem() 将自动创建具有此功能的 UIBarButtonItem

关于ios - 如何将移除附件添加到自定义单元格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35685170/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com