gpt4 book ai didi

ios - 快速求和 UITableView 单元格上的值

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

我在 View Controller 中有一个 TableView,在 UIViewController 中也有一个 UILabel。一切都显示得很好,但我正在努力实现某些目标,但我不能简单地了解其背后的逻辑。

tableview 单元格有一个 UILabel,它在单元格上有 Int 值,这些数字现在不同 我如何获得 tableView 单元格中标签上的数字总和并显示在标签中 View Controller 。

我已经尝试在 UIView Controller 中创建一个变量并将这个值添加到 t 但我无法这样做,因为我无法将这个数字加在一起

有关如何执行此操作的任何帮助。谢谢

var total: Double?
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

switch indexPath.section {
case 0:
let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath) as! BrokageCheckoutCell
cell.configure()
total = Double("\(cell.subPrice.text!)")
cell.selectionStyle = .none
return cell
case 1:
let cell = tableView.dequeueReusableCell(withIdentifier: cellId2, for: indexPath) as! OtherCheckoutCell
cell.configure()
cell.selectionStyle = .none
return cell
default: break
}
return UITableViewCell()
}

最佳答案

你问:

how do I get the sum of the numbers on the Label in the tableView cell and display on the Label in the view controller

简而言之,你不知道。表格 View 单元格(“ View ”的一部分)中的标签不是我们的数据源。它仅用于显示单个字符串。

例如,假设您的应用有 100 个项目要求和,但应用的表格 View 一次只显示 12 行。作为内存和性能的改进,iOS 将重用滚动出 View 的单元格,以便显示滚动到 View 中的新行的内容。但这意味着你不能说“将这 100 个单元格中标签的所有内容相加”,因为没有 100 个单元格;只有 12 个。

您的应用程序应该引用它的“模型”,cellForRowAt 用来确定在给定的表格 View 单元格中显示什么的结构(例如,数组)。因此,如果您想求和一个总计,您应该将该数组中的值相加,而不是引用所有单元格。

如果您的单元格具有允许修改数据的控件,那么该单元格应该启动模型的更新。然后,计算总计(对数组中的值求和)的过程仍然有效。

那么,让我们考虑一个例子:

  1. 您应该有一个包含要求和的数字的模型。你的例子有点不清楚,所以我将创建一个例子,其中每个表行包含一个名称、一个单价和一个数量:

    struct Item {
    let name: String
    let unitPrice: Decimal
    var quantity: Decimal
    }

    在此示例中,任何给定行的总计将是数量乘以单价。所有行的总计将是所有这些产品的总和。

  2. 那么你的 View Controller 可能有一个数组用于它的模型:

    var items: [Item] = ...
  3. 然后,当您想要更新总计标签时,您只需使用一种方法来计算每行总计的数量乘以价格,然后将这些值相加以计算总计。然后它将相应地更新总计文本字段:

    private extension ViewController {
    func updateTotal() {
    let total = items
    .map { $0.quantity * $0.unitPrice }
    .reduce(0, +)

    totalLabel.text = totalFormatter.string(for: total)
    }
    }

    请注意,我不是从单元格中检索这些数字(因为它们可能会被重复使用),而是从模型中检索我需要的所有数据。

  4. 不过,这里的关键是,例如,如果您的单元格允许用户更改其中一个值,则您需要一种机制来更新 TableView Controller 的模型。我们将为此使用一个协议(protocol):

    protocol ItemCellDelegate: class {
    func cell(_ cell: ItemCell, didUpdateQuantity quantity: Decimal)
    }

    class ItemCell: UITableViewCell {
    @IBOutlet weak var nameLabel: UILabel!
    @IBOutlet weak var quantityTextField: UITextField!
    @IBOutlet weak var unitPriceLabel: UILabel!

    static let quantityFormatter: NumberFormatter = ...
    static let priceFormatter: NumberFormatter = ...

    weak var delegate: ItemCellDelegate?
    }

    显然,当您配置单元格时, View Controller 将指定用于更新文本字段(或其他内容)的委托(delegate):

    // MARK: Public methods

    extension ItemCell {
    func configure(name: String, quantity: Decimal, unitPrice: Decimal, delegate: ItemCellDelegate) {
    self.delegate = delegate

    nameLabel.text = name
    quantityTextField.text = ItemCell.quantityFormatter.string(for: quantity)
    unitPriceLabel.text = ItemCell.priceFormatter.string(for: unitPrice)
    }
    }

    ItemCell 获得更新时,它只调用委托(delegate):

    // MARK: Private methods

    private extension ItemCell {
    @IBAction func didUpdateQuantity(_ sender: UITextField) {
    var quantity: Decimal?

    if let text = sender.text, let value = ItemCell.quantityFormatter.number(from: text) {
    quantity = value.decimalValue
    }

    delegate?.cell(self, didUpdateQuantity: quantity ?? 0)
    }
    }

    然后,当 View Controller 配置单元格时,它将自己提供为委托(delegate):

    extension ViewController: UITableViewDataSource {
    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return items.count
    }

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "ItemCell", for: indexPath) as! ItemCell
    let item = items[indexPath.row]
    cell.configure(name: item.name, quantity: item.quantity, unitPrice: item.unitPrice, delegate: self)
    return cell
    }
    }

    当然, View Controller 将遵守该协议(protocol)以接受对文本字段的更新并更新模型:

    extension ViewController: ItemCellDelegate {
    func cell(_ cell: ItemCell, didUpdateQuantity quantity: Decimal) {
    guard let indexPath = tableView.indexPath(for: cell) else { return }

    items[indexPath.row].quantity = quantity

    updateTotal()
    }
    }

    而且,如您所见,如果可以的话,在更新模型后,它也可以自动更新总数。

这里的关键是我们从不将单元格用作我们保存数据的地方。这些单元格仅用于 (a) 显示数据和 (b) 通知 View Controller 是否需要注意任何更新。

我们努力实现责任的明确分离,其中“ View ”用于显示当前屏幕上的控件并与之交互,而“模型”包含我们所有的数据。

关于ios - 快速求和 UITableView 单元格上的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56717127/

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