UITabbar方向问题
我正在从事 uitabbar 应用程序的定向工作。我在标签栏中使用了 5 个标签栏项目。我只想在横向和纵向中旋转 4 个选项卡栏项目。但问题是,当我在非旋转选项卡栏项目中将“返回否”设置为 shouldAutorotateToInterfaceOrientation 时,所有选项卡栏都不起作用。有人可以告诉我我做错了什么吗?
提前致谢。
问候, 萨蒂什
I am working on orientation work on uitabbar application. I am using 5 tabbar item in tabbar. I want only 4 tab bar item to be rotated in both Landscape and potrait. but the issue is when i put "return no" to shouldAutorotateToInterfaceOrientation in non rotating tabbar item, all tab bar are not working. can anybody please tell me what i went wrong?
Thanks in advance.
Regards,
sathish
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,如果 UITabBarController 的每个子控制器都向 shouldAutorotateToInterfaceOrientation: 消息返回 YES,则该消息只会返回 YES。您看到的行为是预期的行为。
查看此页面上的第四个列表项。
By default, a UITabBarController will only return YES to the shouldAutorotateToInterfaceOrientation: message if every one of its child controllers returns YES to that message. The behavior you're seeing is the expected behavior.
Check out the fourth list item on this page.