How to display firebase information in my iOS swif

2019-11-04 05:12发布

我没法把火力点到我的控制器。 火力地堡由于我能够绝版到控制台正常工作。 我需要能够在我的应用程序,以显示所有数据。 请协助! // // // All.swift保证定价//

import Foundation
import UIKit
import Firebase

class All: UINavigationController, UITableViewDataSource, UITableViewDelegate {

var items: [String] = []
var tableView: UITableView!
let cellIdentifier = "CellIdentifier"

override func viewDidLoad(){
    super.viewDidLoad()

    self.tableView = UITableView(frame:self.view!.frame)
    self.tableView!.delegate = self
    self.tableView!.dataSource = self
    self.tableView!.registerClass(UITableViewCell.self, forCellReuseIdentifier: cellIdentifier)
    self.view?.addSubview(self.tableView)

    let ref = Firebase(url:"https://sizzling-inferno-451.firebaseio.com/services")
    ref.observeSingleEventOfType(.Value, withBlock: { snapshot in
        for child in snapshot.children {

//                let key = child.key //returns -Jikaijsipaij and -kalksdokoas
//                let name = child.value.objectForKey("service_name") as   NSString?
////                
//                self.items.append(key)
        }
        // do some stuff once
        print(snapshot.value)

        // get these values and put them in the cell's text view. key is more important
        print(snapshot.key)



        // add to the array and just this array


        self.tableView!.reloadData()
    })
}

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


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

    let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath)

    // Fetch Fruit
    let fruit = items[indexPath.row]

    // Configure Cell
    cell.textLabel?.text = fruit
    return cell
}

// onclick printing
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
    print(items[indexPath.row])
}

}

Answer 1:

这里有一个快速片断来填充块内的阵列,然后一旦填充重新加载的tableview来显示数据。

user_id_0
   name: "Fred"
   friend: "Barney"

而代码中的所有用户的阅读,在它们之间迭代和提取每个名称,并将其添加到一个数组:

    var namesArray: [String] = []

    ref.observeSingleEventOfType(.Value, withBlock: { snapshot in
            for child in snapshot.children {
               let name = child.value["name"] as! String
               namesArray.append(name)
            }
            self.myTableView.reloadData()
    })


文章来源: How to display firebase information in my iOS swift listview controller?