如何使用4个银行的mp3文件库,对付款人来源使用随机选择

时间:2019-06-25 09:31:45

标签: xcode

我希望通过随机选择使用四组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.
    }
}
  1. 要匹配此开头“ {” 函数声明中的预期标识符 最后 课堂上应有'}'

0 个答案:

没有答案