IOS強制スクリーン縦横切り替え

2140 ワード

最近、プロジェクトはhtml 5電子プロトコルを作成しなければなりません.中には署名が含まれています.縦画面の署名が足りないので、画面を横画面に切り替える必要があります.署名が終わったら、署名内容を縦画面のボックスに戻します.プロジェクトはAppStoreに行かないので、企業証明書だけでパッケージ化するので、次のように横画面切り替え機能を実現します.
bool isPortrait = true;
- (IBAction)changeOri:(id)sender {
    if (isPortrait) {
        if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) {
            [[UIDevice currentDevice] performSelector:@selector(setOrientation:) withObject:[NSNumber numberWithInteger:UIInterfaceOrientationLandscapeLeft]];
            isPortrait = false;
        }
    }else{
        if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) {
            SEL selector = NSSelectorFromString(@"setOrientation:");
            NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[UIDevice instanceMethodSignatureForSelector:selector]];
            [invocation setSelector:selector];
            [invocation setTarget:[UIDevice currentDevice]];
            int val = UIDeviceOrientationPortrait;
            // 2     0 1        selector target  
            [invocation setArgument:&val atIndex:2];
            [invocation invoke];
            isPortrait = true;
        }
    }
}

上のような場合は縦、横、左または横のいずれかを選択しないと失効しますが、次の方法ではできません.一般的な方法です
- (BOOL)shouldAutorotate{
    return NO;
}

bool isPortrait = true;
- (IBAction)changeOri:(id)sender {
    CGFloat duration = [UIApplication sharedApplication].statusBarOrientationAnimationDuration;
    [UIView animateWithDuration:duration animations:^{
        [[UIApplication sharedApplication] setStatusBarOrientation:isPortrait ? UIInterfaceOrientationLandscapeRight : UIInterfaceOrientationPortrait];
        self.navigationController.view.transform = isPortrait ? CGAffineTransformMakeRotation(M_PI_2) : CGAffineTransformIdentity;
        self.navigationController.view.bounds = CGRectMake(self.navigationController.view.bounds.origin.x, self.navigationController.view.bounds.origin.y, self.view.frame.size.height, self.view.frame.size.width);
        isPortrait = !isPortrait;   
    }];
}