直播電商平臺開發,橫豎屏切換的方法

zhibo系統開發發表於2023-04-23

直播電商平臺開發,橫豎屏切換的方法

//旋轉方向
- (void)interfaceOrientation:(UIInterfaceOrientation)orientation
{
    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                  = orientation;
        
        [invocation setArgument:&val atIndex:2];
        [invocation invoke];
    }
    if (orientation == UIInterfaceOrientationLandscapeRight||orientation == UIInterfaceOrientationLandscapeLeft) {
        // 設定橫屏
    } else if (orientation == UIInterfaceOrientationPortrait) {
        // 設定豎屏
    }else if (orientation == UIInterfaceOrientationPortraitUpsideDown){
        //
    }
}


 以上就是 直播電商平臺開發,橫豎屏切換的方法,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2947843/,如需轉載,請註明出處,否則將追究法律責任。

相關文章