سؤال

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