tableView.reloadData清除数组 - 索引超出范围

时间:2017-10-07 22:05:19

标签: ios arrays swift uitableview

当我重新加载我的tableview时,我收到错误“Index out of range”。 如果我注释掉tableView.reloadData并打印数组计数它会显示一个完整的数组,但是当我在主调度队列中有它时,它将打印一个空数组并导致错误。

      func loadData ()  {


                posts = [CKRecord] ()
                print("loading")


                var predicate : NSPredicate!
                predicate = NSPredicate(format: "TRUEPREDICATE", argumentArray: nil)
                let publicData = CKContainer.default().publicCloudDatabase
                let queryPic = CKQuery(recordType: "Main", predicate: predicate)
                publicData.perform(queryPic, inZoneWith: nil) { (results:[CKRecord]?, error:Error?) -> Void in

                    print(results?.count as Any)
            //prints full array here


                    if let Pics = results {
                       self.posts = Pics
                        DispatchQueue.main.sync{
                           //Commenting out below prints a full array 
                            self.tableView.reloadData()



                            self.refresh.endRefreshing()

                            print(results?.count as Any)
       // full array also prints here when reloadData is removed.
                            print("refreshed pics")

                        }
                    }
                    }


                }
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {


        let varCount = posts.count as Int
        print(varCount)

        let post = posts[indexPath.row]

        let cellPic = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! StreamTableViewCell

        if let postContent = post["content"] as? String {
            let postImage = post["picture"] as? CKAsset
            let data = try? Data(contentsOf: (postImage?.fileURL)!)
            let name = post["UserID"] as? String
            let vote = post["voteInteger"] as! Int

            cellPic.layer.cornerRadius = 8.0
            cellPic.layer.masksToBounds = true
            cellPic.delegate = self

             cellPic.streamImageView.image = UIImage(data: data! )

            cellPic.nameLabel.text = name

            cellPic.contentLabel.text = postContent

        cellPic.voteInteger.text = String(describing: vote)

        cellPic.voteOld = vote

        cellPic.recordName = post.recordID.recordName

        }

        return cellPic

这是调试器读数 -

loading
Optional(3)
Optional(3)
refreshed pics
3
3
loading
0
fatal error: Index out of range
2017-10-07 17:51:36.345951-0400 PondrMatchv.2[2910:357829] fatal error:
Index out of range

正如您所看到的,它在启动应用程序时加载正常,数组包含3条记录,并且在重新加载时不会更改。

另外,如果我在数组中只有一条记录,它将重新加载完全正常。我最近更改了Cloudkit容器名称,但即使我切换回旧容器,它也会崩溃。这也发生在Production容器中。

更新:这是节功能中的行数。

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

此外,在添加断点并重新确认调试器读数后,它似乎在重新加载时跳过整个调度调用,并直接进入tableview cellForRowAt函数,这就是为什么我没有得到两个Optional(3)打印。

1 个答案:

答案 0 :(得分:0)

通过更改谓词来解决问题。不确定是否有快速更新的错误或什么。