简体   繁体   English

以编程方式在 ViewController 中设置 tableView

[英]Set tableView in a ViewController programmatically

I'm trying to set a tableView programmatically inside a viewController (before I worked in a TableViewController, so I kinda want to replace the tableViewController with a normal ViewController with a tableView inside) But I always get nil error messages if I try following code:我正在尝试在 viewController 中以编程方式设置 tableView(在我在 TableViewController 中工作之前,所以我有点想用普通的 ViewController 替换 tableViewController,里面有一个 tableView)但是如果我尝试以下代码,我总是得到零错误消息:

class MessagesController: UIViewController, UITableViewDataSource, UITableViewDelegate {

let cellId = "cellId"
private var tableView: UITableView!

override func viewDidLoad() {
    super.viewDidLoad()

    self.navigationItem.setHidesBackButton(true, animated: false)
    layoutFAB()
    tableView = UITableView(frame:self.view.frame, style: .plain) // or any frame
    tableView.delegate = self
    tableView.dataSource = self
    tableView.separatorColor = UIColor.black
    tableView.tableFooterView = UIView()
    tableView.backgroundColor = UIColor(red:0.36, green:0.39, blue:0.40, alpha:1.0)

    navigationController?.navigationBar.tintColor = UIColor(red:1.00, green:0.96, blue:0.02, alpha:1.0)

    let imageRight = UIImage(named: "new_message_icon")
    navigationItem.rightBarButtonItem = UIBarButtonItem(image: imageRight, style: .plain, target: self, action: #selector(handleNewMessage))

    tableView.register(UserCell.self, forCellReuseIdentifier: cellId)

    tableView.allowsMultipleSelectionDuringEditing = true

    self.view.addSubview(tableView)
}

func layoutFAB() {
    let item = FloatyItem()
    item.hasShadow = false
    item.buttonColor = UIColor(red:1.00, green:0.96, blue:0.02, alpha:0.75) //yellow opcaity 0,75
    item.circleShadowColor = UIColor.black
    item.titleShadowColor = UIColor.black
    item.titleLabelPosition = .right
    item.handler = { item in
    }
    floaty.hasShadow = false
    floaty.addItem (icon: UIImage(named: "most-537282")) { item in
        self.navigationController?.popToRootViewController(animated: true)

        self.navigationController?.navigationBar.isHidden = false
    }

    floaty.addItem (icon: UIImage(named: "add")) { item in
        let addVC = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "ComposeViewController") as! ComposeViewController
        self.navigationController?.pushViewController(addVC, animated: true)

        self.navigationController?.navigationBar.isHidden = false
    }

    floaty.addItem (icon: UIImage(named: "setting-512")) { item in
        let settingsVC = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "SettingsViewController") as! SettingsViewController
        self.navigationController?.pushViewController(settingsVC, animated: true)

        self.navigationController?.navigationBar.isHidden = false
    }


    floaty.paddingX = self.view.frame.width/2 - floaty.frame.width/2
    floaty.fabDelegate = self

    self.view.addSubview(floaty)
}

You miss你想念

tableView = UITableView(frame:self.view.frame) // or any frame 
tableView.delegate = self
tableView.dataSource = self

If you want to set style .grouped use this initailizer如果你想设置样式.grouped使用这个初始化程序

tableView = UITableView(frame:self.view.frame,style:.grouped) // or any frame 

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

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