如果我旋转 ipad,我想在 ipad 中旋转我的 iphone 应用程序,我在代码中使用的是:
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskAll;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation
{
return (orientation == UIInterfaceOrientationMaskAll);
}
我检查纵向和横向:
和 plist 文件:
我的应用程序设备系列只有 iphone,并且在 ipad 设备中显示为 iphone
但它不旋转,请更正我上面的代码,谢谢