Domanda

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?

Nessuna soluzione corretta

Altri suggerimenti

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top