1

このコードを使用してランダムなサウンドをアクションで再生することを計画していますが、サウンドファイルに名前を付ける方法が正確にはわかりません。助けてくれてありがとう。

int randomNumber = arc4random() % 24 + 1;

NSURL *soundURL = [NSURL fileURLWithPath:[[NSBundle mainBundle]pathForResource:[NSString stringWithFormat:@"Sound%02d", randomNumber] ofType:@"mp3"]];

AVAudioPlayer * soundPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:soundURL error:nil];

[soundPlayer prepareToPlay];
[soundPlayer play];
4

1 に答える 1

3

次のように名前を付けます。

Sound01.mp3
Sound02.mp3
...
Sound24.mp3

于 2012-04-06T03:19:45.313 に答える