数组未在Swift中更新

时间:2019-03-24 23:46:22

标签: swift google-cloud-firestore

启动应用程序时,您应该从Firestore文档中获取一行并写入数组, (数组)

    var items = [String]()
override func viewDidLoad() {
        let db = Firestore.firestore()
        db.collection("cities").getDocuments() { (querySnapshot, err) in
            if let err = err {
                print("Error getting documents: \(err)")
            } else {
                for document in querySnapshot!.documents {
                    print("\(document.documentID) => \(document.data())")
                    self.items.append(document.data()["title"] as! String)
                }
            }
        }

    }

然后在单元格创建功能中,将文本更改为数组中的一行。

    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {

        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath as IndexPath) as! colCell
        print(self.items)
        cell.myLabel.text = self.items[indexPath.item]

        return cell
    }

但是在单元创建函数中,未更新带有Firestore字符串的数组。为什么?

(我在viewDidLoad和单元格中打印出数组,它在viewDidLoad中更新,而在单元格中未更新)

2 个答案:

答案 0 :(得分:1)

您需要重新加载collectionView,因为对firestore的调用是异步的

for document in querySnapshot!.documents {
   print("\(document.documentID) => \(document.data())")
   self.items.append(document.data()["title"] as! String)
}
self.collectionView.reloadData()

答案 1 :(得分:0)

您可以在更新日期后重新加载给定的单元格,

collectionView.reloadItemsAtIndexPaths(arrayOfIndexPaths)

这是更新UICollectionView的优化方法。