如何ViewController
在 iPad 中旋转单曲ios6
。我在
appdelegate.m
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
return UIInterfaceOrientationMaskPortrait;
}
它使所有viewcontroller
的肖像和我想要一个viewcontroller
只在横向模式之间。
在graphViewController.m
- (BOOL)shouldAutorotate
{
return NO;
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}
但我无法得到正确的结果,请尽快回复。谢谢。