3

我试图在选择表格视图单元格时删除突出显示,但希望保留出现的复选标记。

当我在 cellForRowAtIndexPath 中尝试这个时:

    cell.backgroundView = UIView()
    cell.backgroundView?.backgroundColor = UIColor.clearColor()

它仅删除复选标记下方的突出显示,而不是整行(请参阅附图)。

在此处输入图像描述

当我在 cellForRowAtIndexPath 中尝试这个时:

    cell.selectionStyle = UITableViewCellSelectionStyle.None

它不再显示复选标记。

更新:试过这个,和 cell.selectionStyle 做同样的事情,它不再做复选标记

func tableView(tableView: UITableView, shouldHighlightRowAtIndexPath indexPath: NSIndexPath) -> Bool {
    return false
}

这样做的好方法是什么?我希望它仍然像复选框一样起作用,但只是不希望出现蓝色突出显示。TableView 是动态生成的:

    checkBoxView = UITableView()
    checkBoxView.frame = CGRect(x: qView.bounds.midX, y: qView.bounds.midY, width: qView.bounds.width - 100, height: qView.bounds.height/1.5)
    checkBoxView.center = CGPointMake(qView.bounds.midX, qView.bounds.midY)
    checkBoxView.delegate = self
    checkBoxView.dataSource = self
    checkBoxView.tag = 100
    checkBoxView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")
    checkBoxView.setEditing(true, animated: true)
    self.qView.addSubview(checkBoxView)

表视图功能:

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return self.checkBoxContent.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    var cell:UITableViewCell = checkBoxView.dequeueReusableCellWithIdentifier("cell") as! UITableViewCell
    cell.textLabel?.text = self.checkBoxContent[indexPath.row]
    cell.backgroundColor = UIColor.clearColor()
    cell.tintColor = UIColor.greenColor()
    return cell
}
func tableView(tableView: UITableView, editingStyleForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCellEditingStyle {
    return UITableViewCellEditingStyle(rawValue: 3)!
}
4

4 回答 4

5

为了保留复选标记,您不能将此shouldHighlightRowAtIndexPath方法设置为 false。如果这样做,这甚至根本不会在左侧显示复选标记。

我所做的是更改单元格的“selectedBackgroundView”,这将保留左侧复选标记并让我有机会设置背景颜色。我在这里附上了一些代码,希望它会有所帮助。

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

let cell = tableView.dequeueReusableCellWithIdentifier(cellID, forIndexPath: indexPath) as! RecordTableViewCell
cell.selectedBackgroundView = UIView(frame: cell.frame)
cell.selectedBackgroundView?.backgroundColor = UIColor.orangeColor()

return cell
}
于 2015-12-07T07:33:17.530 回答
0

上面的建议都不适合我。在 Swift 5 中,将此行添加到您的 cellForRowAtIndexPath 函数中:

cell.selectionStyle = UITableViewCell.SelectionStyle.none
于 2020-05-31T01:32:10.447 回答
0

斯威夫特 1.2 使用:

tableView.deselectRowAtIndexPath(indexPath, 动画: true)

在 didSelectRowAtIndexPath 委托方法中。

于 2015-08-12T09:48:03.607 回答
-1

使用 UITableView 有一个官方的方法来做到这一点,那就是使用这个:

   optional func tableView(_ tableView: UITableView, shouldHighlightRowAtIndexPath indexPath: NSIndexPath) -> Bool

如果您为此方法返回 YES,那么当单击该单元格时,表格视图将突出显示一个单元格。

另请注意,如果您不想使用它,则需要更改 contentView.backgroundColor,而不仅仅是单元格背景颜色。但突出路线是最好的路线。

此处的文档:https ://developer.apple.com/library/ios/documentation/UIKit/Reference/UITableViewDelegate_Protocol/index.html#//apple_ref/occ/intfm/UITableViewDelegate/tableView:shouldHighlightRowAtIndexPath :

于 2015-07-13T18:08:55.527 回答