hidesBottomBarWhenPushed ignorado no iOS 7

Este código estava funcionando bem até o lançamento do iOS 7. Estou atribuindo umUIViewControllercomhidesBottomBarWhenPushed ComoYES, Enquanto orootViewController de umUINavigationController. Mas o TabBar está sendo mostrado de qualquer maneira. Aqui está o código relevante:

Login *lv = [[Login alloc] init];
lv.HowToUseShows = showHowToUse;
lv.hidesBottomBarWhenPushed = YES;

UINavigationController *BokShelfNav = [[UINavigationController alloc] initWithRootViewController:lv];

//... 

UITabBarController *tbController = [[UITabBarController alloc] init];
tbController.viewControllers = @[BokShelfNav,...];

Alguém com um problema semelhante?

questionAnswers(3)

yourAnswerToTheQuestion