为什么不出现TableView,TableCell?

时间:2019-07-13 05:14:04

标签: ios swift firebase

我正在创建一个chatApp,所以我试图创建一个显示profileimage和名称的表视图,但是现在无法正常工作

我为此应用程序使用Firebase存储和数据库

有人可以告诉我我在做什么错吗?

这是UserModel类,用于存储从Firebase提取的用户信息

import UIKit

class UserModel: NSObject {
    @objc var userName : String!
    @objc var profileImageUrl : String!
    @objc var uid : String!
}

这是PeopleViewController,它显示人们的信息,例如peopleImage,姓名

import UIKit
import SnapKit
import Firebase
import FirebaseDatabase
import FirebaseAuth
import FirebaseStorage


class PeopleViewController: UIViewController,UITableViewDelegate,UITableViewDataSource {


    var array : [UserModel] = []
    var tableview : UITableView!

    override func viewDidLoad() {
        super.viewDidLoad()


        tableview = UITableView()
        tableview?.delegate = self
        tableview?.dataSource = self
        tableview?.register(UITableViewCell.self, forCellReuseIdentifier: "Cell")
        view.addSubview(tableview!)
        tableview?.snp.makeConstraints { (m) in
            m.top.equalTo(view)
            m.bottom.left.right.equalTo(view)
        }


        Database.database().reference().child("users").observe(DataEventType.value, with: { (snapshot) in

            self.array.removeAll()

            for child in snapshot.children{
                let fchild = child as! DataSnapshot
                let userModel = UserModel()

                UserModel.setValuesForKeys(fchild.value as! [String : Any])
                self.array.append(userModel)
            }

            DispatchQueue.main.async {
                self.tableview?.reloadData()
                }
        })

    }


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

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

        let cell = tableview?.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)

        let imageview = UIImageView()
        cell?.addSubview(imageview)
        imageview.snp.makeConstraints { (m) in
            m.centerY.equalTo(cell!)
            m.left.equalTo(cell!).offset(10)
            m.height.width.equalTo(50)
        }



        URLSession.shared.dataTask(with: URL(string: array[indexPath.row].profileImageUrl!)!){ (data, response, err) in

            DispatchQueue.main.async {
                imageview.image = UIImage(data: data!)
                imageview.layer.cornerRadius = imageview.frame.size.width/2
                imageview.clipsToBounds = true
            }
        }.resume()


        let label = UILabel()
        cell?.addSubview(label)
        label.snp.makeConstraints { (m) in
            m.centerY.equalTo(cell!)
            m.left.equalTo(imageview.snp.right).offset(20)
        }

        label.text = array[indexPath.row].userName

        return cell!
    }


    func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
        return 70
    }

    func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {

        let view = self.storyboard?.instantiateViewController(withIdentifier: "ChatViewController") as? ChatViewController

        view?.destinationUid = self.array[indexPath.row].uid

        self.navigationController?.pushViewController(view!, animated: true)
    }

在Main.storyboard中

我无法直接在PeopleViewController上插入TableView

那么Runnig为何不将TableView出现在PeopleViewController上?

3 个答案:

答案 0 :(得分:0)

您忘记提供UITableView的框架,请尝试以下操作:

override func viewDidLoad() {
        super.viewDidLoad()


        tableview = UITableView(frame: view.frame) // Or your desired frame
        // Rest of your code
}

答案 1 :(得分:0)

我认为您错过了在表格中注册您的单元格 这是您的代码的解决方案。

let tableView: UITableView = UITableView()
tableView.frame = CGRect(x: 10, y: 10, width: 100, height: 500)

tableView.register(UITableViewCell.self, forCellReuseIdentifier: "MyCell")

尝试

答案 2 :(得分:0)

工作表中的精细..PLZ检查您的FIRBASE API响应

enter image description here