我问了一个类似的问题,但我需要帮助
我的UIViewController
在表格下方包含UITableView
,UILabel
以显示总价。
在UITableViewCell
我UIImage
显示照片,UILabel
显示数量,+ - UIButton
&{39}和UILabel
来显示价。
我从UserDefaults
我希望以UILabel
总价格形式显示数量x价格
每个UITableViewCell
按+或 - UIButton
时需要更改UILabel
数量
来自UIViewController
的代码:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! TetTableViewCell
var item = loadedCart[indexPath.row]
cell.nameLbl?.text = item["name"] //as? String
cell.priceLbl.text = item["price"] //as? String
cell.qntUserDef = Int(item["qty"]!)!
updateTotal()
return cell
}
func updateTotal() {
for item in loadedCart {
var qnt = item["qty"] ?? ""
var price = item["price"] ?? ""
let val = qnt.components(separatedBy: "").compactMap { Int($0.trimmingCharacters(in: .whitespaces)) }
var sum = val.reduce(0, +)
print("sum\(sum)")
let prrr = price.components(separatedBy: "").compactMap { Int($0.trimmingCharacters(in: .whitespaces)) }
let sumpri = prrr.reduce(0, +)
print("sumpri\(sumpri)")
qntUser += (sum * sumpri) ?? 0
if item["qty"] == nil {
self.totalSummLbl.text = "\(0)"
}
if item["qty"]?.count == 0 {
totalSummLbl.text = "\(0)"
print("total\(totalSummLbl.text)")
} else {
totalSummLbl.text = "\(qntUser)"
}
}
}
来自UITableViewCell
的代码:
var lCart = UserDefaults.standard.array(forKey: "car") as? [[String: String]] ?? []
var qntUserDef: Int = 0
@IBAction func plusBtn(_ sender: UIButton) {
for item in lCart {
qntLbl.text = item["qty"]
}
qntUserDef += 1
qntLbl.text = "\(qntUserDef)"
print("tettttt-\(qntUserDef)")
}
通过这种方式,我已经实现了数量UILabel
已更改,但是当我进入另一个并且返回时 - 请不要保存,并且不会显示新的数量和总和UILabel
如何更改代码以将数据重新保存到UserDefaults
,并在按+或 - 时显示总计UILabel
?
致大浩回答:
VC代码:
Class :
weak var delegate: TestTableViewCell?
extension TestTABLEVC: OrderTableViewCellDelegate {
func plusButtonPressed(_ cell: TestTableViewCell) {
let indexPath = self.tableViewT.indexPath(for: cell)
var item = loadedCart[(indexPath?.row)!]
item["qty"] = "\(cell.qntUserDef)"
// write the data back to user default
var oldValue = UserDefaults.standard.array(forKey: "car")
item.updateValue(cell.qntLbl.text!, forKey: "qty")
// reload this cell
self.tableViewT.beginUpdates()
self.tableViewT.reloadRows(at: [indexPath!], with: .automatic)
self.tableViewT.endUpdates()
}
}
来自TableViewCell
的代码:
import UIKit
protocol OrderTableViewCellDelegate: class {
func plusButtonPressed(_ cell: TestTableViewCell)
}
class TestTableViewCell: UITableViewCell {
weak var delegate: OrderTableViewCellDelegate?
@IBAction func plusBtn(_ sender: UIButton) {
delegate?.plusButtonPressed(self)
}
}
答案 0 :(得分:0)
基本上你所做的只是改变内存中的变量。您需要将这些新值写回用户默认值以保存它。
您可以在func plusBtn(_ sender: UIButton)
中执行此操作,将其委派给ViewController并在那里完成工作。
在viewWillAppear
中,记得从用户默认值重新加载数据,刷新表格视图。
有一些提示: - 创建一个模型类来保存数据。例如:
class Order {
var name: String
var price: Double
var quantity: Int
}
- 给tableviewcell一个委托:
协议OrderTableViewCellDelegate:class { func plusButtonPressed(_ cell:OrderTableViewCell) }
表视图单元格中的,
class OrderTableView {
... your view outlets go here
weak delegate: OrderTableViewCellDelegate?
@IBAction func plusBtn(_ sender: UIButton) {
delegate?.plusButtonPressed(self)
}
}
- 在视图控制器中,记得实现OrderTableViewCellDelegate。
extension class CartViewController: OrderTableViewCellDelegate {
override func plusButtonPressed(_ cell: OrderTableViewCell) {
let indexPath = self.tableView.indexPathForCell(cell)
let item = self.items[indexPath.row]
item.quantity += 1
// write the data back to user default
....
// reload this cell
self.tableView.beginUpdates()
self.tableView.reloadCellAtIndexes([indexPath], animation: .automatic)
self.tableView.endUpdates()
}
}
<{1>}中的,
viewWillAppear
更新:设置单元格的委托。
func viewWillAppear(_animated: Bool) {
super.viewWillAppear(animated)
//reload the data from user default
self.items = read and parse the data from user default to a list of Order models
//reload the table view
self.tableView.reloadData()
}