作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在表格 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/
我是一名优秀的程序员,十分优秀!