I have a custom UITableView with custom cells (70px height for each cell).
UITableView
I have also a 49px UITabBar, but it\'s hides the tableView.
UITabBar
If you changed self.hidesBottomBarWhenPushed=true in previous view controller, then make sure to change it to self.hidesBottomBarWhenPushed=false inside override func prepare(for segue: UIStoryboardSegue, sender: Any?) {}
self.hidesBottomBarWhenPushed=true
self.hidesBottomBarWhenPushed=false
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {}