没有附加Swift数组

时间:2016-08-30 14:41:37

标签: ios arrays swift uitableview

我试图让tableview显示已解析的数据,但是应该填充我的tableview的数组不会被追加。 有人可以快速浏览一下,让我知道我做错了什么吗?

import UIKit
import SwiftKeychainWrapper
import Firebase

class FeedVC: UIViewController, UITableViewDelegate, UITableViewDataSource {

@IBOutlet var tableView: UITableView!

var posts = [Post]()

override func viewDidLoad()
{
    super.viewDidLoad()

    tableView.delegate = self
    tableView.dataSource = self


    DataService.ds.REF_POSTS.observeEventType(.Value, withBlock: { snapshot in
        if let snapshot = snapshot.children.allObjects as? [FIRDataSnapshot]
        {
            for snap in snapshot
            {

                if let postDict = snap.value as? Dictionary<String, AnyObject>
                {
                    let key = snap.key
                    let post = Post(postID: key, postData: postDict)
                    self.posts.append(post)

                }
            }
        }
    })

    tableView.reloadData()


}

override func viewDidAppear(animated: Bool) {

}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

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

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let post = posts[indexPath.row]
    print("\(post.caption)")


    return tableView.dequeueReusableCellWithIdentifier("PostCell") as! PostCell
}






@IBAction func signOutBtnTapped(sender: UIButton) {

    KeychainWrapper.defaultKeychainWrapper().removeObjectForKey(KEY_UID)
    try! FIRAuth.auth()?.signOut()
    performSegueWithIdentifier("toSignInVC", sender: nil)
}


}

谢谢你们。

1 个答案:

答案 0 :(得分:2)

您的数据检索似乎是异步操作,在呈现表之前可能无法完成。尝试在self.posts.append(post)之后或完成块结束时在新行上重新加载表数据。

相关问题