Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have problem with hiding tabbar . this my code

//this created in the Delegate.m file 
-(void)HideTabBar
{
    mTabController.hidesBottomBarWhenPushed =YES;
}

//Now i want to this on the cell select Tab bar  must hide when it go to the map view (other view ) for that i use this but its working 
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    JourneyAppDelegate * journey = (JourneyAppDelegate *)[[UIApplication sharedApplication]delegate];
    [journey HideTabBar];
}
But 

it work how can do this

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
202 views
Welcome To Ask or Share your Answers For Others

1 Answer

mTabController will not get invisible/hidden until you push it for Example:

//this created in the Delegate.m file 
-(void)HideTabBar
{
    mTabController.hidesBottomBarWhenPushed =YES;
    [self.navigationController pushViewController:IncomingViewController animated:YES];
}

//Now i want to this on the cell select Tab bar  must hide when it go to the map view     (other view ) for that i use this but its working 
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
   JourneyAppDelegate * journey = (JourneyAppDelegate *)[[UIApplication sharedApplication]delegate];
   [journey HideTabBar];
}

You need to set hidesBottomBarWhenPushed property to the UIViewController that is going to be pushed before you call pushViewController.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...