Existe uma save area, que nao consigo tirar que fica cobrindo os elementos superioes
meu ViewController
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var viagensTableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
viagensTableView.dataSource = self
viagensTableView.delegate = self
}
}
extension ViewController: UITableViewDataSource{
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 10
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = UITableViewCell(style: .default, reuseIdentifier: nil)
cell.textLabel?.text = "viagem \(indexPath.row)"
return cell
}
}
extension ViewController: UITableViewDelegate{
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let headerView = Bundle.main.loadNibNamed("HomeTableViewHeader", owner: self)?.first as? HomeTableViewHeader
return headerView
}
func tableView(_ tableView: UITableView, estimatedHeightForFooterInSection section: Int) -> CGFloat {
return 300
}}