我有以下swift代码来实现UITableViewRowAction,当我滑动一行时,行按预期向左滑动,但是所有的Section Header Rows也同时滑动到左边的表行。 / p>
我还包括一个屏幕截图来显示正在发生的事情
如果我删除了viewForHeader覆盖并将其替换为titleForHeaderInSection,那么我没有问题。
覆盖viewForHeader的原因是我想在Header Row中放置一个图像。
override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let cell = tableView.dequeueReusableCellWithIdentifier("header") as UITableViewCell
cell.textLabel?.text = instrumentGroups[section].name
cell.imageView?.image = UIImage(named: instrumentGroups[section].name)
return cell
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> InstrumentTableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("instrumentCell", forIndexPath: indexPath) as InstrumentTableViewCell
cell.instrument = instrumentGroups[indexPath.section].instruments[indexPath.row]
return cell
}
override func tableView(tableView: UITableView, editActionsForRowAtIndexPath indexPath: NSIndexPath) -> [AnyObject]? {
let instrument = instrumentGroups[indexPath.section].instruments[indexPath.row]
var actions: [AnyObject] = []
var action = UITableViewRowAction(style: .Normal, title: "Remove Watch") { (action, indexPath) -> Void in
tableView.editing = false
instrument.SetWatchList(false)
self.refresh()
}
action.backgroundColor = UIColor.redColor()
actions.append(action)
return actions
}
override func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
}
答案 0 :(得分:23)
只需在viewForHeaderInSection函数中返回cell.contentView
而不是cell
,您的问题就会得到解决。
答案 1 :(得分:6)
我遇到了同样的问题。答案很简单。 因为您使用UITableViewCell作为标题视图。请改用UILabel或UITableViewHeaderFooterView。