我希望通过随机选择使用四组mp3文件。 但想在计时器中运行它们。 然后使用选择的音频播放器源 我使用了大约8000个声音片段文件
疲倦的各种形式的编码
class ViewController: UIViewController {
@IBAction func (AVAudioPlayer;) {
NSArray *array = [[NSBundle mainBundle] pathsForResourcesOfType:@".mp3" inDirectory:@"."];
NSString *randomPath = [array objectAtIndex:arc4random() % [array count]];
AVAudioPlayer* theAudio = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath: randomPath] error: NULL;
theAudio.delegate = self;
[theAudio play];
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
}