gpt4 book ai didi

swift - 无法从 Firestore 数据库加载分段控制 TableView 中的数据

转载 作者:行者123 更新时间:2023-11-30 10:35:39 25 4
gpt4 key购买 nike

我正在尝试通过从 Firestore 数据库获取数据来填充分段控件的 TableView ,但由于某种原因我无法这样做,我正在尝试一个在线可用的示例,该示例具有预设数据,但在这里我正在从 Firestore 数据库检索数据。

它也没有给出任何运行时错误,只是不加载数据。下面是代码的 View Controller 的屏幕截图。请帮忙

enter image description here

class FirstSegementViewController: UIViewController {

@IBOutlet var segmentControl:UISegmentedControl!

@IBOutlet var tableView: UITableView!

var s1Post:[s1] = []
var s2Post:[s2] = []


override func viewDidLoad() {
super.viewDidLoad()

// Do any additional setup after loading the view.
retrieveAllPosts()
}


func retrieveAllPosts(){
let postsRef = Firestore.firestore().collection("posts").limit(to: 50)

postsRef.getDocuments { (snapshot, error) in

if let error = error {

print(error.localizedDescription)

} else {

if let snapshot = snapshot {

for document in snapshot.documents {


let data = document.data()
//self.postKey = document.documentID
let username = data["post_author_username"] as? String ?? ""
let postTitle = data["postTitle"] as? String ?? ""
let postcategory = data["postcategory"] as? String ?? ""
let postContent = data["postContent"] as? String ?? ""
let postAuthorProfilePicUrl = data["post_user_profile_pic_url"] as? String ?? ""
let postAuthorSpinnerC = data["post_author_spinnerC"] as? String


let newSourse = s1(_documentId: document.documentID, _username: username, _postTitle: postTitle, _postcategory: postcategory, _postContent: postContent, _postuserprofileImagUrl: postAuthorProfilePicUrl, _postAuthorSpinncerC: postAuthorSpinnerC)

self.s1Post.append(newSourse)
// print(self.postKey)
}
self.tableView.reloadData()
}
}
}
}




@IBAction func indexChanged(_ sender: UISegmentedControl) {
switch segmentControl.selectedSegmentIndex
{
case 0:
retrieveAllPosts()
// label1.text = "First Segment Selected"
case 1:

retrieveAllPosts()
// label1.text = "Second Segment Selected"
default:
break
}

//self.tableView.reloadData()
}

/*
// MARK: - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
// Get the new view controller using segue.destination.
// Pass the selected object to the new view controller.
}
*/



/*
// MARK: - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
// Get the new view controller using segue.destination.
// Pass the selected object to the new view controller.
}
*/

}


extension FirstSegementViewController: UITableViewDelegate, UITableViewDataSource{

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
var value = 0
switch segmentControl.selectedSegmentIndex{
case 0:
value = s1Post.count
break
case 1:
value = s2Post.count
break
default:
break
}
return value
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "MyCell", for: indexPath) as! MyWsPostCell
switch segmentControl.selectedSegmentIndex{
case 0:
cell.s11 = s1Post[indexPath.row]
break
case 1:
cell.s21 = s2Post[indexPath.row]
break

default:
break
}
return cell
}


}

最佳答案

您似乎只为 self.s1Post 设置值。

关于swift - 无法从 Firestore 数据库加载分段控制 TableView 中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58092273/

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