我的TableViewCell不显示我得到的当前数据。通过打印,我可以获取所有需要的数据,但是这些数据不会显示在我的TbleViewCell中。
在这里,我创建了一个新类,其中包含用户和帖子的所有数据:
class UserPostModel {
var post: PostModel?
var user: UserModel?
init(post: PostModel, user: UserModel) {
self.post = post
self.user = user
}
}
我的帖子数组的声明:
var postArray = [UserPostModel]()
在这里,我将数据加载到新类中:
self.observeRadius(completion: { (radius) in
let currentRadius = radius
// Üperprüfe, welche Posts im Umkreis erstellt wurden
let circleQuery = geoRef.query(at: location!, withRadius: Double(currentRadius)!)
circleQuery.observe(.keyEntered, with: { (postIds, location) in
self.observePost(withPostId: postIds, completion: { (posts) in
guard let userUid = posts.uid else { return }
self.observeUser(uid: userUid, completion: { (users) in
let postArray = UserPostModel(post: posts, user: users)
self.postArray.append(postArray)
print(postArray.post!.postText!, postArray.user!.username!)
self.postArray.sort(by: {$0.post!.secondsFrom1970! > $1.post!.secondsFrom1970!})
})
})
这里我将数据加载到表格视图单元格中:
extension DiscoveryViewController: UITableViewDataSource {
// wie viele Zellen
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
print(postArray.count)
return postArray.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "DiscoveryCollectionViewCell", for: indexPath) as! DiscoveryCollectionViewCell
cell.user = postArray[indexPath.row]
cell.post = postArray[indexPath.row]
//cell.delegate = self
return cell
}
}
我现在可以显示所有信息并打印出来,但是它们不会显示在tableViewCell中。
在此先感谢您的帮助!
答案 0 :(得分:3)
您将数据追加到数组中,但不重新加载TableView数据。
要解决此问题,请在将L0: if
:: cond1 -> goto L1
:: else
fi;
附加到数组后立即重新加载TableView数据
def __init__(self):
self.score=[]
def __init__(self,score=[]):
self.score=score
def __init__(self,score):
self.score=[]