0

有谁知道如何获取以下代码并使其在 phonegap 中工作?

// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    //return (interfaceOrientation == UIInterfaceOrientationPortrait);
    if(UIInterfaceOrientationIsPortrait(interfaceOrientation)) {
        return(YES);
    }

    if(UIInterfaceOrientationIsLandscape(interfaceOrientation)) {
        return([movieController isFullscreen]);
    }

return(NO);
}

我试图基本上允许本机 ios 媒体播放器旋转到横向模式,但让我的应用程序的其余部分处于纵向模式。关于我如何做到这一点的任何想法?在此先感谢您的帮助!

4

1 回答 1

0

查看 your_project_name-Info.plist “支持的界面方向”和“支持的界面方向(iPad)”

于 2012-04-08T15:28:02.247 回答