Try this
- (void)viewWillAppear: (BOOL)animated {
[super viewWillAppear:animated];
[self.tabBarController.tabBar setHidden:YES];
}
- (void)viewWillDisappear: (BOOL)animated {
[super viewWillDisappear:animated];
[self.tabBarController.tabBar setHidden:NO];
}
|