次のコードを取得して 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 メディア プレーヤーが横向きモードに回転できるようにしようとしていますが、アプリの残りの部分は縦向きモードのままにしておきます。これを達成する方法についてのアイデアはありますか? 助けてくれてありがとう!