0
誰でも次のコードを実行してphonegap内で動作させる方法を知っていますか? xcode - 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のメディアプレーヤーは、ランドスケープモードに回転させるが、ポートレートモードで私のアプリの残りの部分を残すことができるようにしようとしています。どのように私はこれを達成することができます上の任意のアイデア?助けを前にありがとう!