如何在UITableView - Swift中制作清单?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在UITableView - Swift中制作清单?相关的知识,希望对你有一定的参考价值。

我用UITableView做了一个应用程序。我想在触摸单元格时在左侧显示刻度线标记,并在触摸单元格时隐藏。我使用了一些代码而它没有显示我想要的。勾号显示在屏幕左侧而非左侧。

这就是我想要的:enter image description here

这就是它:enter image description here

这是我用过的代码:

import UIKit

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

override func viewDidLoad() {
    super.viewDidLoad()

    self.myTableView.allowsMultipleSelection = true
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    tableView.cellForRowAtIndexPath(indexPath)?.accessoryType = UITableViewCellAccessoryType.Checkmark
}

func tableView(tableView: UITableView, didDeselectRowAtIndexPath indexPath: NSIndexPath) {
    tableView.cellForRowAtIndexPath(indexPath)?.accessoryType = UITableViewCellAccessoryType.None
}

总之,第一个问题是刻度线显示在单元格的右侧而不是左侧。另一个问题是,它不会解开(再次按下单元格时隐藏)

谢谢。

答案

试试这个

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
        // Table view cells are reused and should be dequeued using a cell identifier.
        let cellIdentifier = "DhikrTableViewCell"
        let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath) as! GoalsTableViewCell

        cell.tickButton.addTarget(self, action: #selector(GoalsViewController.toggleSelcted(_:)), forControlEvents: UIControlEvents.TouchUpInside)
        cell.tickButton.tag = indexPath.row
        // Fetches the appropriate meal for the data source layout.
        let workout = workouts[indexPath.row]
        let number = numbers[indexPath.row]

        if workout.isSelected {
            cell.tickButton.setImage(UIImage(named: "Ticked Button"), forState: UIControlState.Normal)
        } else {
            cell.tickButton.setImage(UIImage(named: "Tick Button"), forState: UIControlState.Normal)
        }

        cell.nameLabel.text = workout.name
        cell.numberLabel.text = number.number

        return cell
    }

func toggleSelcted(button: UIButton) {
        let workout = workouts[button.tag]
        workout.isSelected = !workout.isSelected
        myTableView.reloadData()
    }
另一答案

要使用默认的UITableViewCell实现此行为,您可能需要将表视图设置为编辑模式。

在viewDidLoad中尝试以下代码。

self.tableView.allowsMultipleSelectionDuringEditing = true
self.tableView.setEditing(true, animated: false)

这将在左侧显示刻度线,并且当再次按下单元格时,这将取消勾选(隐藏)。

已编辑:如果需要更多自定义,请创建自定义表格视图单元格并手动处理选择/刻度标记。

这将是你的cell.swift。

class CustomCell: UITableViewCell {

@IBOutlet weak var titleLabel: UILabel!
@IBOutlet weak var tickImageView: UIImageView!

//Handles the cell selected state
var checked: Bool! {
    didSet {
        if (self.checked == true) {
            self.tickImageView.image = UIImage(named: "CheckBox-Selected")
        }else{
            self.tickImageView.image = UIImage(named: "CheckBox-Normal")
        }
    }
}

override func awakeFromNib() {
    super.awakeFromNib()
    checked = false
    self.layoutMargins = UIEdgeInsetsZero
    self.separatorInset = UIEdgeInsetsZero
}

数据源数组是,

let list = ["Title 1", "Title 2", "Title 2", "Title 4"]

视图控制器didLoad会是这样的

    override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.

    listView.registerNib(UINib(nibName: "OptionsSelectionCell", bundle: nil), forCellReuseIdentifier: "SelectionCell")
}

视图控制器表委托方法就像,

extension ViewController: UITableViewDataSource, UITableViewDelegate {

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

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return list.count
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("SelectionCell") as! OptionsSelectionCell
    cell.titleLabel.text = list[indexPath.row]
    return cell
}

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    let cell = tableView.cellForRowAtIndexPath(indexPath) as! OptionsSelectionCell
    cell.checked = !cell.checked
}
}

以上是关于如何在UITableView - Swift中制作清单?的主要内容,如果未能解决你的问题,请参考以下文章

如何从 UITableView 中的 UITableViewCells 中的 UITextFields 中获取文本并将它们放入数组中(Swift 3)?

如何在 Swift 中的 View 中控制 TableView

使用字典数据填充 UITableView (Swift)

多节 UITableView (swift)

如何在 swift 中增加 ScrollView 中的 UITableView 高度

Swift:如何在 UITableView 中定位标记的 UITextView?