如何在 Swift 中等待数组被填充

问题描述 投票:0回答:1

我正在用 Swift 编写一个应用程序,但在以正确的方式填充表格视图时遇到问题。 我正在从 Firestore 获取数据,并有一门课程来帮助我获取该数据。基本过程是我有一个 getProducts 函数,它用产品设置本地数组变量。下一步是在我的 tableview 类中创建一个对象数组,但是我的 tableview 似乎在我的函数有时间加载到数组之前就构建了。 所以我的

loadProducts
填充了数组产品,但我的计数似乎是 0。

希望能帮到你。

我的代码:

class ProductTableViewController: UITableViewController {

    var products = [Product]()
    override func viewDidLoad() {
        super.viewDidLoad()
            loadProducts()
        // Uncomment the following line to preserve selection between presentations
        // self.clearsSelectionOnViewWillAppear = false

        // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
        // self.navigationItem.rightBarButtonItem = self.editButtonItem
    }

    // MARK: - Table view data source

    override func numberOfSections(in tableView: UITableView) -> Int {
        return 1
    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return products.count
    }
    
    private func loadProducts(){
        let dbhelper = DBHelper()
        dbhelper.getProducts(){ success in
            self.products = dbhelper.products
        }
    }

    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cellIdentifier = "ProductTableViewCell"
        guard let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath) as? ProductTableViewCell  else {
            fatalError("The dequeued cell is not an instance of ProductTableViewCell.")
        }
        
        let product = products[indexPath.row]
        cell.titleLabel.text = product.Titel
        cell.priceLabel.text = product.Prijs
        

        return cell
    }
}

ios swift tableview
1个回答
0
投票

在加载产品功能中添加表视图重新加载语句,以便使用新数据重新加载表:

private func loadProducts(){
    let dbhelper = DBHelper()
    dbhelper.getProducts(){ success in
        self.products = dbhelper.products
        Self.tableView.reloadData()
    }
}
© www.soinside.com 2019 - 2024. All rights reserved.