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 に答える