ViewController
の iPad でシングルを回転させる方法ios6
。デリゲートを使用しました
appdelegate.m
- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
return UIInterfaceOrientationMaskPortrait;
}
それはすべてのポートレートになり、ランドスケープモードでのみ中間にviewcontroller
1つ欲しい.viewcontroller
graphViewController.m で
- (BOOL)shouldAutorotate
{
return NO;
}
- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskLandscape;
}
しかし、正しい結果を得ることができません。できるだけ早く応答してください。ありがとう。