0

サウンドを再生するために使用しているコードは次のとおりです。

NSString *soundFilePath = [NSString stringWithFormat:@"%@/%@.m4a", [[NSBundle mainBundle] resourcePath],currentSound.soundNameID];
NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];

AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL error:nil];
player.numberOfLoops = 0;

[player play];        

サウンドを再生しようとしていますが、再生されません。私のファイルはm4aタイプです。

4

2 に答える 2

0

各オブジェクトの作成後に abn assert を追加して、nil オブジェクトを探します。また、ボタンセレクターでこれを行わないでください。メインキューにディスパッチするブロックに入れます。

于 2013-05-20T12:30:22.390 に答える