我有以下 -
class BTTableView: UITableView, UITableViewDelegate, UITableViewDataSource
用这些方法 -
public func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
return true
}
public func tableView(_ tableView: UITableView, editingStyleForRowAt indexPath: IndexPath) -> UITableViewCell.EditingStyle {
return .delete
}
public func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath)
{
print("editingStyle")
}
当我在单元格上滑动时,“删除”选项显示为预期 - Delete action shown
如果我 -
在我看来,这个方法将被#1和#2调用。
有人能帮我理解我做错了什么吗?
编辑 - 通过DonMag的输入,解决了以下问题:
override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
if let hitView = super.hitTest(point, with: event) {
let isSwipeButton = String(describing: type(of: hitView)) == "UISwipeActionStandardButton"
if hitView.isKind(of: BTTableCellContentView.self) || isSwipeButton {
return hitView
}
}
return nil;
}
看来commit
没有被调用,因为该类重写hitTest
:
override func hitTest(_ point: CGPoint, with event: UIEvent?) -> UIView? {
if let hitView = super.hitTest(point, with: event) , hitView.isKind(of: BTTableCellContentView.self) {
return hitView
}
return nil;
}
并返回nil
因为hitView
然后是动作按钮。
简单地移除它可能/将导致问题(首先注意到的是,当在其外部敲击时“下拉”不会关闭)。
因此,您需要编辑该功能......可能需要一些工作,但这是开始的地方。
很可能你忘了写:
self.delegate = self
self.dataSource = self