0
在應用程序中,我只想支持UIInterfaceOrientationLandscapeRight。所以我爲此做了兩件事。 1)在proj plist文件中將初始界面方向設置爲UIInterfaceOrientationLandscapeRight。 2)在每個視圖控制器中編寫該代碼。 (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {interfaceIrl(UIInterfaceOrientationLandscapeRight);}} }iPad方向問題
但是,當我切換到另一個視圖使用removeFromSuperview和addSubview方法來替換舊視圖與新視圖時,新視圖的方向不正確。
How to solve this problem ???