INSPullToRefresh icon indicating copy to clipboard operation
INSPullToRefresh copied to clipboard

Control not hidden when new controller is presented without tab bar

Open AgentCosmic opened this issue 9 years ago • 0 comments

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?

AgentCosmic avatar Apr 10 '16 14:04 AgentCosmic