如何使用UIButton系统地播放多个声音?

时间:2016-05-22 23:34:37

标签: swift audio uibutton avaudioplayer

我正在尝试制作一个UIButton,系统地按特定顺序播放4个声音,每个声音按下UIButton后。我尝试使用代码执行此操作:

var counter = 0

    @IBAction func buttonTapped(sender: AnyObject) {

        counter = counter + 1


        if counter == 1 {
            print("play 1_barbradycarryon.wav")
        }else if counter == 2{
            print("play 2_fooledyou.wav")
        }else if counter == 3 {
            print("play 3_Looney.wav" )
        }else if counter == 4 {
            print("play 4_sucks.wav")
        }
    }

但我没有运气。我应该使用什么代码?并且,如果需要,我应该如何将AVAudioPlayer插入脚本(到目前为止,我没有插入AVAudioPlayer;主要是因为我不知道在这种情况下如何)? 我是一名新编码员,非常感谢您的帮助!

0 个答案:

没有答案