有谁知道如何获取以下代码并使其在 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 媒体播放器旋转到横向模式,但让我的应用程序的其余部分处于纵向模式。关于我如何做到这一点的任何想法?在此先感谢您的帮助!