我有uitabbar應用程序,我想在橫向模式下旋轉一個ViewController和圖表。有可能做到這一點?在UITabBar應用程序中旋轉一個UIViewController
0
A
回答
2
有沒有簡單的方法來在橫向模式只有一個視圖,而別人都在景觀,也不是以編程方式切換到橫向模式的簡單方法。
一種可行的方法是使用一個CGAffineTransform
改變你的觀點在viewWillAppear
(顯示的視圖,即權前):
- (void)viewWillAppear:(BOOL)animated; {
//-- Adjust the status bar
[UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationLandscapeRight;
//-- Rotate the view
CGAffineTransform toLandscape = CGAffineTransformMakeRotation(degreesToRadian(90));
toLandscape = CGAffineTransformTranslate(toLandscape, +90.0, +90.0);
[self.view setTransform:toLandscape];
}
希望這對你的作品。
0
只有當它的模式,如果它是tabBarController的一部分,你需要支持的方向更改所有控制器
相關問題
- 1. Single UIViewController UITabBar內部自動旋轉
- 2. 停用旋轉一個UITabbar項目
- 3. 在iPhone應用程序中旋轉MKMapView
- 4. 旋轉UIViewController
- 5. 只允許一個uiviewcontroller旋轉
- 6. 在應用程序中有UITabBar和UINavigationController?
- 7. 在iOS上有一個按鈕調用UITabBar應用程序
- 8. UITabBar over UIViewController
- 9. NSNotificationCenter和UITabBar應用程序
- 10. UITabbar應用程序問題
- 11. UITabBar自動旋轉ios4 +
- 12. iPad應用程序中的旋轉
- 13. 在imageview旋轉的應用程序chrashing
- 14. 力旋轉的UIViewController
- 15. UIViewController旋轉問題
- 16. UIViewcontroller不會旋轉
- 17. UiViewController旋轉問題
- 18. UIViewController自動旋轉?
- 19. 如何啓用只在一個uiviewcontroller旋轉設備
- 20. 在UIViewController中只旋轉一個UIView(兩者)
- 21. 停止UITabBarController旋轉但UIViewController旋轉
- 22. 在整個應用程序中設置旋轉
- 23. 在TabbarController的NavigationController中強制UIViewController旋轉
- 24. iOS 6 - 在UINavigationController中強制旋轉UIViewController
- 25. 如何開發一個「旋轉瓶子」應用程序
- 26. IOS通用應用程序旋轉
- 27. 以編程方式旋轉UIViewController
- 28. 以編程方式旋轉UIViewController?
- 29. iOS。如何啓用或禁用旋轉一個UIViewController的
- 30. 在選項卡式應用程序中只旋轉一個視圖控制器