繁体   English   中英

如何在我的iOS Swift ListView控制器中显示Firebase信息?

[英]How to display firebase information in my iOS swift listview controller?

我很难将Firebase放入控制器。 由于我能够将打印输出到控制台,因此Firebase正常工作。 我需要能够显示我的应用程序中的所有数据。 请协助! // // 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])
}

}

这是一个快速代码段,用于填充块中的数组,然后在填充后重新加载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()
    })

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM