在iOS 7中忽略了hidesBottomBarWhenPushed

在iOS 7中忽略了hidesBottomBarWhenPushed,第1张

概述此代码在iOS 7发布之前运行良好.我正在将一个UIViewController与hidesBottomBarWhenPushed指定为YES,作为UINavigationController的rootViewController.但无论如何都会显示TabBar.这是相关的代码: Login *lv = [[Login alloc] init];lv.HowToUseShows = showHo 此代码在iOS 7发布之前运行良好.我正在将一个UIVIEwController与hIDesBottombarWhenPushed指定为YES,作为UINavigationController的rootVIEwController.但无论如何都会显示Tabbar.这是相关的代码:
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所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1109677.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存