How to Hide Tab Bar Controller ? I want to hide the Tab Bar controller with double tap on UIImageView.
Use Tap Gesture Recognizer to detect double taps on a UIImageView. Then invoke a method on detecting the double double tap. Add the following line of code in that method.
UIImageView
self.tabBarController.tabBar.hidden=YES;
Hope this helps.