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
Try this
self.commentsTableView.contentInset = UIEdgeInsetsMake(49, 0, 0, 0) self.commentsTableView.setContentOffset(CGPoint.init(x: 0, y: -49), animated: false)