gpt4 book ai didi

ios - 选中单元格时如何显示复选标记

转载 作者:行者123 更新时间:2023-11-28 11:11:08 25 4
gpt4 key购买 nike

我在表格 View 中有 3 个表格 View 单元格。我想在选中时在单元格上显示复选标记。

这是我的代码:

import UIKit

class UserRightRoleTableViewController: UITableViewController {

@IBOutlet var roleTableView: UITableView!

@IBOutlet var managerTableViewCell: UITableViewCell!
@IBOutlet var readerTableViewCell: UITableViewCell!
@IBOutlet var memberTableViewCell: UITableViewCell!

var checked = [false, false, false]
var cells = [UITableViewCell]()
var roleString = ["Manager, Member, Reader"]

override func viewDidLoad() {
super.viewDidLoad()
title = "Role"
navigationController?.navigationBar.backgroundColor = UIColor.whiteColor()
let backButton = UIBarButtonItem(title: "<User", style: UIBarButtonItemStyle.Done, target: self, action: "backToVC")
navigationItem.leftBarButtonItem = backButton
navigationController?.navigationBar.tintColor = UIColor.whiteColor()
cells = [managerTableViewCell, memberTableViewCell, readerTableViewCell]
}

func backToVC() {
dismissViewControllerAnimated(true, completion: nil)
}

@IBAction func backToUserRightTableViewControllerAction(sender: AnyObject) {
dismissViewControllerAnimated(true, completion: nil)
}



override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
if indexPath.row == 0 {
checked[0] == true ? (managerTableViewCell.accessoryType = .Checkmark) : (managerTableViewCell.accessoryType = .None)
} else if indexPath.row == 1 {
checked[1] == true ? (memberTableViewCell.accessoryType = .Checkmark) : (memberTableViewCell.accessoryType = .None)
} else {
checked[2] == true ? (readerTableViewCell.accessoryType = .Checkmark) : (readerTableViewCell.accessoryType = .None)
}
}

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
checked[indexPath.row] = true
}
}

但它不起作用。

最佳答案

除了更新 checked 之外,您还需要在 didSelectRowAtIndexPath 函数中更新单元格的 accessoryType

并且您的 willDisplayCell 函数可以变得更简单:

override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {
cell.accessoryType = checked[indexPath.row] ? .Checkmark : .None
}

关于ios - 选中单元格时如何显示复选标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34998744/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com