Simple trick to put end to those empty tableview cells
Just like me, I am sure you all have been annoyed by those empty table view cell after your data is loaded.
Alok Choudhary
Austin, TX
1 min read
Just like me, I am sure you all have been annoyed by those empty table view cell after your data is loaded.
@IBOutlet internal var tableView: UITableView! {
didSet {
tableView.tableFooterView = UIView()
}
}