gpt4 book ai didi

ios - Swift Firebase 不调用 observeSingleEvent 的方法

转载 作者:行者123 更新时间:2023-11-28 06:16:27 27 4
gpt4 key购买 nike

我正在尝试从 Firebase 检索登录用户的数据。但是,它不会进入 observeSigleEvent 方法并填充数据,因此,当涉及到 cellForRowAtIndexpath 方法时,posts 数组返回 nil 并给出 fatal error 错误:索引超出范围。

代码如下。

@IBOutlet var tableView: UITableView!
@IBOutlet var homeActivityIndicator: UIActivityIndicatorView!

var databaseRef = Database.database().reference()
var loggedInUser = Auth.auth().currentUser


var loggedInUserData : AnyObject?

var posts = [AnyObject?]()


override func viewDidLoad() {
super.viewDidLoad()

// get loggedinUser Details

self.databaseRef.child("user_profiles").child(self.loggedInUser!.uid ).observeSingleEvent(of:.value, with: {
(snapshot) in

if(snapshot.exists()){
self.loggedInUserData = snapshot

// get all posts that are made by user
self.databaseRef.child("posts/\(self.loggedInUser!.uid)").observe(.childAdded, with:{ (snapshot2) in
if(snapshot2.exists()){
self.posts.append(snapshot2)
self.tableView.insertRows(at: [IndexPath (row: 0, section: 0)], with: UITableViewRowAnimation.automatic)
self.homeActivityIndicator.stopAnimating()
}else{return}
}){(error) in
print(error.localizedDescription)
}
}else{return}
})
}

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

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

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

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

let post = posts[(self.posts.count-1) - (indexPath ).row]!.value(forKey: "text") as! String

cell.configure(profilePic: nil, name: self.loggedInUserData!.value(forKey: "name") as! String, handle: self.loggedInUserData!.value(forKey: "handle") as! String, post: post)

return cell
}

最佳答案

发生这种情况是因为在 ViewController 首次初始化时调用了所有 tableView 函数,而来自 Firebase 的数据在初始化后(相对)长时间内不会进入。当

let post = posts[(self.posts.count-1) - (indexPath ).row]!.value(forKey: "text") as! String

被调用时,它正在尝试访问一个数组的索引 -1,其中没有任何内容,因此出现异常。

要解决您的问题,请尝试设置以下内容以动态更改行数:

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

每次调用您的 child 添加的监听器时,使用 tableView.reloadData() 更新 tableView。

关于ios - Swift Firebase 不调用 observeSingleEvent 的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44996231/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com