我正在尝试在视图控制器中以编程方式设置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)
}
你错过了
tableView = UITableView(frame:self.view.frame) // or any frame
tableView.delegate = self
tableView.dataSource = self
如果要设置样式.grouped
请使用此启动器
tableView = UITableView(frame:self.view.frame,style:.grouped) // or any frame