0
A
回答
0
我通過旋轉屏幕解決我的問題
if (toorientation == UIInterfaceOrientationPortrait) {
sub_view.transform = CGAffineTransformMakeRotation(degreesToRadin(0));
}
else if (toorientation == UIInterfaceOrientationPortraitUpsideDown){
sub_view.transform = CGAffineTransformMakeRotation(degreesToRadin(180));
}
else if (toorientation == UIInterfaceOrientationLandscapeLeft){
sub_view.transform = CGAffineTransformMakeRotation(degreesToRadin(-90));
}
else if (toorientation == UIInterfaceOrientationLandscapeRight){
sub_view.transform = CGAffineTransformMakeRotation(degreesToRadin(90));
}
1
把它放在違規視圖的UIViewController中。它應該解決你的問題。
- (BOOL)shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)interfaceOrientation
{
switch(interfaceOrientation){
case UIInterfaceOrientationPortrait: return YES;
break;
case UIInterfaceOrientationLandscapeLeft: return YES;
break;
case UIInterfaceOrientationLandscapeRight: return YES;
break;
default: return NO;
break;
}
}
相關問題
- 1. UIBarButtonItem支持自定義視圖的縱向和橫向尺寸?
- 2. 如何在uiwebview視頻標籤中支持橫向模式?
- 3. 自定義視圖在橫向模式下替換TableView
- 4. 強制視圖僅支持橫向模式
- 5. UIPagviewController子視圖橫向模式
- 6. 加入了橫向視圖不支持
- 7. 如何在橫向模式下播放視頻,但應用只支持縱向模式?
- 8. 如何在iOS中支持橫向和縱向視圖?
- 9. 如何擁有一個視圖支持縱向和橫向
- 10. 支持在UINavigationController中只有一個視圖的橫向
- 11. UIImagePickerController僅支持肖像模式。任何支持橫向模式的替代品?
- 12. 在UITabBarController的UIWebView中支持HTML5視頻的橫向模式
- 13. 如何在iOS上支持橫向模式? shouldAutorotateToInterfaceOrientation只被調用一次
- 14. 如何在橫向模式下自定義日期選擇器
- 15. UIPageViewController - 如何在橫向模式下自定義左右頁面?
- 16. 只在橫向模式
- 17. 如何在橫向模式下將子視圖與主視圖一起轉換
- 18. ActionBarSherlock:選項卡在橫向模式下丟失自定義視圖
- 19. 在橫向模式下向UIScrollView添加子視圖
- 20. 縱向應用 - 橫向模式視圖 - 無自轉
- 21. 如何將視圖從縱向旋轉到橫向模式
- 22. 如何將縱向視圖更改爲橫向模式?
- 23. 在WPF中同時支持橫向和縱向視圖
- 24. 在橫向模式下打開視圖
- 25. 旋轉視圖以橫向模式
- 26. 自動佈局問題在橫向視圖自定義鍵盤
- 27. 如何更改橫向模式下圖像視圖的位置
- 28. 如何在一個UIView中支持橫向/縱向定位
- 29. 當支持橫向模式時強制iPad應用以縱向模式啓動
- 30. 支持橫向的UIVIEWS:
感謝üAurun拉奎拉,我想你沒有得到我的問題,你可以請看到我的編輯問題 – MaheshBabu 2011-02-03 06:08:41