我想,如果我旋轉ipad的 我在我的代碼中使用旋轉在ipad上我的iPhone應用程序是:當啓用旋轉選項旋轉在ipad我的iPhone應用程序
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskAll;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation
{
return (orientation == UIInterfaceOrientationMaskAll);
}
和我檢查肖像和景觀:
和plist文件:
我應用器件系列是僅適用於iPhone,並顯示在iPad設備的iphone
但它不旋轉,請糾正我上面的代碼,謝謝
您使用的是iOS 5嗎? – iAhmed