在UITableViewCell上滑动后,我希望单元格返回到其原始位置。
不停地查看按钮
这是我目前的情况,希望对此进行修改。
这是该部分的源代码。
override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
let kk = UIContextualAction(style: .normal, title: "test") { (UIContextualAction, view, success) in
success(true)
}
kk.backgroundColor = .orange
let kkk = UISwipeActionsConfiguration(actions: [kk])
return kkk
}
答案 0 :(得分:-1)
使用类似MGSwipeTableCell的库。 找到here
如果您不想使用库,则可以尝试手动将单元格向左平移,用这种方法伪造关闭单元格。 找到答案in this post