2012-04-05 15 views
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のメディアプレーヤーは、ランドスケープモードに回転させるが、ポートレートモードで私のアプリの残りの部分を残すことができるようにしようとしています。どのように私はこれを達成することができます上の任意のアイデア?助けを前にありがとう!

答えて

0

your_project_name-Info.plist「サポートされているインターフェイスの向き」と「サポートされているインターフェイスの向き(iPad)」を参照

関連する問題