How to Hide Tab Bar Controller ? I want to hide the Tab Bar controller with double tap on UIImageView.
Objective-C
[self.tabBarController.tabBar setHidden:YES];
Swift 3
self.tabBarController?.tabBar.isHidden = true
Swift 2
self.tabBarController?.tabBar.hidden = true