-4

アニメーションを含むこのアプリケーションを作成することができました。しかし、Web からダウンロードした .wav ファイルを追加することで、それを目立たせ、より楽しくしたいと考えています。アニメーションの期間中、サウンドを再生したい。1 か月前にコーディングを開始したばかりなので、どんな助けでも大歓迎です

4

1 に答える 1

0

AVAudioPlayer を使用できます

メソッドを作成し、それをボタンまたはアニメーションに接続するだけです

-(void) playLoopingMusicInApplication {
        AVAudioPlayer *audioPlayer;

    // set the pathForResource: to the name of the sound file, and ofType: to AAC preferrably.
    NSString *soundFilePath = [[NSBundle mainBundle] pathForResource:@"fileName" ofType:@"WAV"];
    NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];
    player = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL error:nil];

    player.delegate = self;

    //infinite
    player.numberOfLoops = -1;

    [player play];
    //[player release];
}
  • PS - プロジェクトで AVFoundation フレームワークと AudioToolbox フレームワークを取得する必要があります。

お役に立てれば!

于 2013-07-23T02:26:46.560 に答える