INSPullToRefresh
INSPullToRefresh copied to clipboard
Control not hidden when new controller is presented without tab bar
My main screen has a nav bar and tab bar. But when I push a new controller without a tab bar, the control is visible like a row on the table. Even the scroll indicator is shifted down. I had to use this code to "fix" it. Seems to work so far.
if (!self.tabBarController) { self.tableView.contentInset = UIEdgeInsetsZero; self.tableView.scrollIndicatorInsets = UIEdgeInsetsZero; }
Could this be related to this issue #80?