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?

没有正确的解决方案

其他提示

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top