我在firebase数据库结构中有一个名为myArray的对象,它有多行字符串,如[a,b和c]这样如何在表视图中显示这个对象,当我运行它时它会像我这样进入我的调试,但它没有出现在我的模拟器中它像那样安抚,我正在使用swift 3
这是我的代码:
import UIKit
import Firebase
class TestTable: UITableViewController {
var arrayList = [test]()
var Ref = FIRDatabaseReference()
override func viewDidLoad() {
super.viewDidLoad()
Ref=FIRDatabase.database().reference()
Ref.child("Users").child("Test").observe(.childAdded ,with: { (snapshot) in
if let User = snapshot.value as? [String : AnyObject]{
let Add = test()
Add.setValuesForKeys(User)
self.arrayList.append(Add)
print("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@\(snapshot.value)")
self.tableView.reloadData()
}
})
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return arrayList.count
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return arrayList[section].myArray.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as!TestTableCell
let hh = indexPath.section
cell.myTestView.text = (arrayList[hh].myArray as AnyObject) as? String
cell.titleText.text = arrayList[hh].title
return cell
}
}
这是我的班级:
class test : NSObject {
var myArray : NSArray = []
var title : String?
}
答案 0 :(得分:1)
你的myArray不是字符串数组,它是字典。所以如果你想在cell.myTestView.text中获得a,b和c的值。然后你需要运行循环来获取cell.myTestView.text中的所有a,b和c。
var string = ""
for (key, value) in arrayList[hh].myArray
{
print("\(key) -> \(value)")
string = string + "\n\(key) -> \(value)"
}
cell.myTestView.text = string
使用以上代码更新您的专线cell.myTestView.text = (arrayList[hh].myArray as AnyObject) as? String
。