如何在选择行时添加图像,然后在SWIFT中的UITableView中取消选择该图像时将其删除

时间:2015-06-15 01:45:16

标签: ios swift uitableview ios8 uiimage

我遇到的问题是在选择行时显示图像,然后在选择另一行时使图像消失。如果我触摸选定的行,则不会取消选择 - 这是正常的,因为这是我想要的行为。我只想在触摸另一行时取消选择当前选定的行。

我在Swift写作。

我正在使用Kai Engelhardt's解决方案来扩展所选行,并已回答here

这个UIImage应该出现/消失: cellContent.ringImage.image = UIImage(名称:“ring.png”)

我猜我的逻辑在下面的 selectedCellIndexPath 部分是错误的。

这是我的代码:

在我的TVC中:

class MenuViewController: UIViewController{

var selectedCellIndexPath: NSIndexPath?
let SelectedCellHeight: CGFloat = 222.0
let UnselectedCellHeight: CGFloat = 64.0

let menuItems = [
("1","test 1"),
("2","test 2"),
("3","test 3"),
("4","test 4"),
("5","test 5")]

func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    return 1
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    if tableView == menuTable {
        return menuItems.count
    } else {
            return 0}
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
     var cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! MenuTableViewCell
    if tableView == menuTable {
        let (my, section) = menuItems[indexPath.row]
        cell.myLabel.text = my
        cell.sectionLabel.text = section
        cell.selected = true
   }
}

func tableView(tableView: UITableView!, heightForRowAtIndexPath indexPath: NSIndexPath!) -> CGFloat {
    if let selectedCellIndexPath = selectedCellIndexPath {
        if selectedCellIndexPath == indexPath {
            return SelectedCellHeight
        }
    }
    return UnselectedCellHeight
}

    func tableView(tableView: UITableView!, didSelectRowAtIndexPath indexPath: NSIndexPath!) {
    var cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! MenuTableViewCell
    var cellContent = tableView.cellForRowAtIndexPath(indexPath) as! MenuTableViewCell
    let cellLabel = cellContent.sectionLabel.text

if let selectedCellIndexPath = selectedCellIndexPath {
        if selectedCellIndexPath != indexPath {
            self.selectedCellIndexPath = indexPath
            cellContent.ringImage.image = UIImage(named: "ring.png")

        } else {
            self.selectedCellIndexPath != indexPath
            cellContent.ringImage.hidden = true
              tableView.deselectRowAtIndexPath(indexPath, animated: true)
        //    cellContent.testbutton.removeFromSuperView

        }
    } else {
        selectedCellIndexPath = indexPath
        cellContent.ringImage.hidden = true
        tableView.deselectRowAtIndexPath(indexPath, animated: true)
    }
    tableView.beginUpdates()
    tableView.endUpdates()       
}

非常感谢您的帮助!

由于

Mikee

1 个答案:

答案 0 :(得分:0)

似乎self.selectedCellIndexPath != indexPath没有做你想要的取消选择标记效果。您可以尝试使用tableView.indexPathsForSelectedRows()来获取当前选定的indexPath,将其与参数中的indexPath进行比较,然后在不指定self.selectedCellIndexPath的情况下完成逻辑。

(编辑)的 当我发现您还需要varialbe self.selectedCellIndexPath来标识高度时,您可以尝试将其转换为计数器变量,该变量计算当前所选行的选定时间。如果它是奇数,它被选中,而当你甚至知道你将取消选择它并将计数器变量重置为零时。

func tableView(tableView: UITableView!, heightForRowAtIndexPath indexPath: NSIndexPath!) -> CGFloat {
    if (indexPath == tableView.indexPathsForSelectedRows()[0] && self.counter % 2 == 1) {
    return SelectedCellHeight
    }
    return UnselectedCellHeight
}