簡體   English   中英

coreData僅打印最后一個實體(swift4)

[英]coreData only printing last entity (swift4)

我正在嘗試調用coreData .color的所有條目。 問題是只有1個coreData條目被調用到標簽。 我希望coreData的所有實體都可以打印在標簽上,而不僅僅是當前代碼正在執行的最新操作。

  import UIKit

class ViewController: UIViewController {

    @IBOutlet weak var tableView: UITableView!
    @IBOutlet var label: UILabel!

    var users = [User]()
    override func viewDidLoad() {
        super.viewDidLoad()
        // Do any additional setup after loading the view, typically from a nib.


        tableView.dataSource = self

        if CDHandler.fetchObject() != nil {
            users = CDHandler.fetchObject()!
            tableView.reloadData()
        }
    }
}

extension ViewController: UITableViewDataSource {
    func numberOfSections(in tableView: UITableView) -> Int {
        return 1
    }

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

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = UITableViewCell(style: .subtitle, reuseIdentifier: nil)
        cell.textLabel?.text = users[indexPath.row].username
        for c in users {

            label.text = c.color
        }
        return cell
    }
}

實際上,您當前的循環將數組的最后一項設置為標簽文本,因此請嘗試將此值附加在一起

  for c in users {

        label.text = "\((label.text)!)+\((c.color)!)" 
    }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM