0

ドキュメント ディレクトリに複数のファイルがあります。ファイルmp3の形式は です。形式の種類を気にせずに、プレーヤーでそれらのいずれかを再生する必要があります。オーディオ ファイルについては、次のアプローチを使用します。mp4avi

//Play the file
    NSURL *fileUrl = [NSURL fileURLWithPath:path];

                  NSError *err;
                  audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:fileUrl error:&err];

                  if (audioPlayer == nil)
                  NSLog(@"%@",[err description]);
                  else
                  [audioPlayer play];

すべてのオーディオ/ビデオ ファイルに共通の方法/プレーヤーはありますか (Microsoft メディア プレーヤーのようなもの)。

事前にサンクス。

4

1 に答える 1

0

コンポーネントを使用できMPMoviePlayerViewControllerます。例 (これはコントローラーをモーダルとして表示します):

MPMoviePlayerViewController *player = [[MPMoviePlayerViewController alloc] initWithContentURL:url];
[self.navigationController presentModalViewController:player animated:YES];

ドキュメントはこちらにあります: http://developer.apple.com/library/ios/#documentation/mediaplayer/reference/mpmovieplayerviewcontroller_class/Reference/Reference.html

于 2012-05-07T13:46:38.090 に答える