我想在視圖的顯示方向上更改視圖的方向。
例如:
無論何時用戶單擊按鈕,都會向用戶顯示新視圖。無論什麼方向,我都希望在橫向模式下顯示此視圖。
任何想法.....更改iPhone中視圖的方向
0
A
回答
2
添加此功能在新視圖中將方向更改爲橫向模式。
- (BOOL)shouldAutorotateToInterfaceOrientationUIIn terfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
0
添加到您的視圖控制器
- (BOOL)shouldAutorotateToInterfaceOrientationUIIn terfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
2
使用此功能,在您的類。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeRight ||
interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
相關問題
- 1. 縮放iPhone的方向更改視圖
- 2. 如何在iPhone中更改方向時更改視圖控制器的視圖?
- 3. Iphone方向更改
- 4. 如何更改視圖的特定部分的方向iPhone
- 5. 更改視圖iphone
- 6. 以不同的方向更改視圖
- 7. iPhone - UIView方向更改
- 8. Iphone:手動更改方向
- 9. 在iPhone/iPad中更改UIImage的方向
- 10. iOS - 用設備方向更改視圖
- 11. iPad - 方向更改和視圖?
- 12. 以方向更改視圖佈局
- 13. Android - 添加視圖方向更改
- 14. 更改方向更改視圖背景圖像
- 15. 在Web視圖中調整方向更改的YouTube視頻
- 16. 更改方向更改時的視圖大小
- 17. 如何更改方向更改時的視圖佈局?
- 18. 如何更改iDevice(iPad/iPhone)的方向?
- 19. IPHONE:在App Delegate中刪除/添加子視圖後,方向更改失敗
- 20. iPhone:道路方向地圖視圖
- 21. 將視圖從縱向更改爲橫向時,方向不會更改
- 22. iPhone視圖顯示錯誤的方向
- 23. 根據方向更改更改視圖iOS
- 24. 瞭解座標,視圖,子視圖和方向更改
- 25. Xcode:frame.size.height更改使視圖的高度在向下方向變化?
- 26. 如何將特定視圖的方向更改爲橫向?
- 27. iphone中的地圖方向
- 28. 作爲改變方向的滾動視圖更改
- 29. 改變iphone方向
- 30. 容器視圖控制器中的力方向更改
它仍然只顯示縱向模式下的視圖。當手機傾斜時,它會切換到橫向模式。但是我想在加載視圖時將其更改爲橫向模式;) – SNR 2011-02-28 09:39:52