所以,问题就在标题中:是否可以将 uitabbar 设置在屏幕左侧而不是底部? thx=)
Best Answer-推荐答案 strong>
我不建议旋转UITabBarController的 View ,因为你需要修复很多问题,比如标签栏项目的旋转,标签栏的大小,标签栏内容 View 的大小和旋转。
为什么不创建一个 View 或 View Controller 来定制你需要的东西?
但是,如果你必须使用 UITabBarController,你应该旋转 [UITabBarController tabBar] 而不是 [UITabBarController view] ,因为 views [UITabBarController viewControllers] 的 > 是 [UITabBarController view] 的 subview 。
旋转[UITabBarController tabBar] 后,修复这些:
[UITabBarController tabBar]中项目的旋转
[UITabBarController tabBar]的大小
UITabBarController 内容 View 的大小(需要枚举UITabBarController.view.subviews 的 subview 才能找到)
关于ios - 是否可以在屏幕左侧设置 uitabbar?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/19076428/
|