如何使用xcode 3.2.6在橫向模式下創建通用應用程序默認情況下?我需要爲每個視圖分離.xib文件,我是否必須使用此代碼 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {//對於支持的方向返回YES return(interfaceOrientation == UIInterfaceOrientationLandscape); }universal xcode 3.2.6默認的橫向模式
0
A
回答
0
我使用此示例代碼,並使其基於視圖我只隱藏其導航b AR由RootViewController_Phone.h和RootViewController_Pad BenellingsonPost
0
在你的plist,你應該改變supported interface orientations
只是兩個項目:
項目0 Landscape (right home button)
項目1 Landscape (left home button)
而且在每個視圖控制器使用:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return (UIInterfaceOrientationIsLandscape(interfaceOrientation));
}
相關問題
- 1. 更改默認/工作目錄Xcode 3.2.6
- 2. Xcode 4&Xcode 3.2.6
- 3. 如何停止Xcode 3.2.6默認iPad模擬器?這是新的行爲嗎?
- 4. 的XCode:如何更改的橫向和縱向模式
- 5. 在xcode 4.5中設置橫向模式的方向GM IOS 6
- 6. Xcode 3.2.6到Xcode 4.2
- 7. 在UIViewController iPad的橫向模式下,默認的UIView寬度是768嗎?
- 8. Xcode默認模擬位置
- 9. 橫向模式下的UIImagepickercontroller
- 10. 如何在WP7中更改橫向模式下的ApplicationBar默認大小?
- 11. Base SDK Xcode 3.2.6
- 12. ArrayView TableView(Xcode 3.2.6)
- 13. Xcode 6中的默認設備方向
- 14. 默認情況下,Android視頻視圖應處於橫向模式
- 15. 根據當前橫向模式自動旋轉默認應用程序圖像
- 16. Xcode在橫向模式下的iPad分辨率
- 17. 視頻不是在橫向模式下播放(Xcode的4.2)
- 18. 旋轉視圖以橫向模式
- 19. XCode 4和XCode 3.2.6並排
- 20. Simperium登錄橫向模式
- 21. MFSideMenu橫向模式問題
- 22. UIAlertView在橫向模式
- 23. 兩個橫向模式
- 24. 只在橫向模式
- 25. iPhone橫向模式問題
- 26. MFMailComposer不IO6橫向模式
- 27. ImageView在橫向模式下
- 28. 在橫向模式下
- 29. printPreview橫向模式inC#
- 30. AutoCompleteTextView提示橫向模式
@iphonemaclover,大使用此代碼
self.navigationController.navigationBarHidden = YES;
! – iNoob 2012-03-22 03:10:43