У меня проблемы с загрузкой моего tableView с данными из Firebase Firestore.Я перебираю документы комментариев в функции generateMore()
и назначаю добавить комментарий как AttributedTextComment
к массиву.Но когда я устанавливаю массив в viewDidLoad()
для контроллера представления, массив остается пустым, и я не могу понять, почему.Спасибо за любую помощь!Также я использую библиотеку SwiftyComments, которую можно найти на Github, если это поможет понять код.
EDIT : Массив в функции generateMore()
заполняется всеми данными Firestore, как и предполагалось, но по какой-то причине allcomments
в ViewController никогда не устанавливается равным этому массиву.
class RandomDiscussion {
var comments: [AttributedTextComment]! = []
var colRef: CollectionReference!
func generateMore() -> [AttributedTextComment] {
var arr: [AttributedTextComment]! = []
colRef = Firestore.firestore().collection("pictures/TKIiXdontufmDM1idbVH/comments")
let query = colRef.whereField("body", isGreaterThan: "")
query.getDocuments() { (querySnapshot, err) in
if err != nil {
print("error")
return
}
else {
for doc in querySnapshot!.documents {
print("\(doc.documentID) => \(doc.data())")
let com = AttributedTextComment()
com.posterName = doc.get("username") as? String
com.body = doc.get("body") as? String
com.upvotes = doc.get("upvotes") as? Int
com.downvotes = doc.get("downvotes") as? Int
arr.append(com)
NotificationCenter.default.post(name: NSNotification.Name(rawValue: "load"), object: nil)
}
}
}
return arr
}
}
class RedditCommentsViewController: CommentsViewController {
private let commentCellId = "redditComentCellId"
var allComments: [AttributedTextComment] = []
override func viewDidLoad() {
super.viewDidLoad()
tableView.register(RedditCommentCell.self, forCellReuseIdentifier: commentCellId)
tableView.backgroundColor = RedditConstants.backgroundColor
NotificationCenter.default.addObserver(self, selector: #selector(loadList), name: NSNotification.Name(rawValue: "load"), object: nil)
allComments = RandomDiscussion().generateMore()
currentlyDisplayed = allComments
self.swipeToHide = true
self.swipeActionAppearance.swipeActionColor = RedditConstants.flashyColor
}
override open func commentsView(_ tableView: UITableView, commentCellForModel commentModel: AbstractComment, atIndexPath indexPath: IndexPath) -> CommentCell {
let commentCell = tableView.dequeueReusableCell(withIdentifier: commentCellId, for: indexPath) as! RedditCommentCell
let comment = currentlyDisplayed[indexPath.row] as! RichComment
commentCell.level = comment.level
commentCell.commentContent = comment.body
commentCell.posterName = comment.posterName
//commentCell.date = comment.soMuchTimeAgo()
commentCell.upvotes = comment.upvotes
commentCell.isFolded = comment.isFolded && !isCellExpanded(indexPath: indexPath)
return commentCell
}
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
self.navigationController?.navigationBar.barTintColor = RedditConstants.flashyColor
self.navigationController?.navigationBar.tintColor = .white
UIApplication.shared.statusBarStyle = .lightContent
}
@objc func loadList(){
self.tableView.reloadData()
}
}