0

「モーダル ビュー コントローラー」が iOS4 で変更される可能性があることがわかりました。なぜなら、私は以下のサンプルコードを使用したからです http://iosdevelopertips.com/video/getting-mpmovieplayercontroller-to-cooperate-with-ios4-3-2-ipad-and-earlier-versions-of-iphone-sdk.html

ボタンを使用してムービー プレーヤー コントローラを実行します。iOS3 では、モーダル ビュー コントローラーを閉じた後もページ コントロールが機能します。しかし、iOS4 ではそうではありません。左上隅のナビゲーション バーを押して戻り、セルをクリックしてビューに戻ると、ページ コントロールが再び機能します。

この問題の主な原因は何ですか?

4

1 に答える 1

1

以下のコードは、TestViewController ..Becoz をコピーして貼り付けます。ここで AutoRelease the CustomMoviePlayer

- (void)loadMoviePlayer
{  
           // Play movie from the bundle

NSString *path = [[NSBundle mainBundle] pathForResource:@"Movie-1" ofType:@"mp4" inDirectory:nil];

// Create custom movie player   
   moviePlayer = [[CustomMoviePlayerViewController alloc] initWithPath:path];

// Show the movie player as modal
[self presentModalViewController:moviePlayer animated:YES];

// Prep and play the movie
    [moviePlayer readyPlayer];    
 }
于 2011-10-01T06:54:25.583 に答える