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,...];
有类似问题的人?
解决方法 我发现调用方法和设置属性的顺序会影响是否显示标签栏.如果我把self.hIDesBottombarWhenPushed = YES;在视图控制器的vIEwDIDLoad方法中,我正在推动标签栏仍然显示.如果我将它移动到init方法,则标签栏会像在iOS 6上一样隐藏.
总结以上是内存溢出为你收集整理的在iOS 7中忽略了hidesBottomBarWhenPushed全部内容,希望文章能够帮你解决在iOS 7中忽略了hidesBottomBarWhenPushed所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)