Question

I am using iOS 7. I have a UITableView inside a UITabbarController.

I hide the tabbar using the following code (meanwhile I also set the tableView to be fullscreen)

CGRect frame = self.tabBarController.tabBar.frame;
frame.origin.y = 568.0;
self.tabBarController.tabBar.frame = frame;

However, after that, I cannot select the cell near the bottom. When tap at the position where the tabbar was, there is no effect.

Has anyone run into the same problem? Do anyone know how to fix?

No correct solution

OTHER TIPS

You'll want to use something like This to detect the tab bar and then hide.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top