1
A
回答
1
嘗試增加這UIViewController中:
// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}
您可以瞭解更多關於此這裏:UIViewController class reference
相關問題
- 1. jqGrid只允許1個排序方向
- 2. iPhone - 只允許一個視圖控制器的橫向方向
- 3. 只允許將ng-drag元素向一個方向拖動
- 4. 只允許jpg和.png文件只
- 5. Capistrano只允許'sudo su - user'允許
- 6. 在Android中只允許2個屏幕方向?
- 7. 只允許在UIWebView上進行方向/旋轉更改
- 8. 只允許在一個方向上攝影控制
- 9. 只允許應用運行在默認方向
- 10. UITableview只允許輕掃以在一個方向上刪除
- 11. 如何只允許
- 12. 只允許上傳
- 13. 只允許一次
- 14. 只允許對UITextField
- 15. 方法只允許單用戶運行
- 16. 防止圖像盜鏈;只允許referer和重定向請求?
- 17. UIPopoverController允許的箭頭方向發出
- 18. 如何在shouldAutorotate = NO時確定設備方向,只允許縱向顯示?
- 19. PHP只允許@,_, - 和。從輸入
- 20. iptables的:只允許HTTP和SSH
- 21. 只允許應用stdin,stdout和stderr
- 22. RegExp只允許正整數和小數
- 23. 只允許字母和特殊字符
- 24. postgres regexp_replace只允許a-z和A-Z
- 25. 只允許使用tabbars和UInavigationcontrollers的orientationPortrait?
- 26. 如何只允許0-99.99
- 27. 只允許數字字符
- 28. 只允許註冊表格
- 29. 只允許ASCII字符VBA
- 30. locationServiceEnabled只允許iPhone 4?
感謝傑米!我會盡力! – ghiboz 2010-06-08 14:45:21