编辑代码

//
//ViewController.swjtf
//BirdSound
//
//created byZhifeng Chen on 2020/8/3.
//  Copyright © 2020 Zhifeng Chen.All rights reserved
//
import UIKit
import AVAudiodation
class ViewController :UIViewController{
    var soundPlayar:AVAudioPlayer!
    @IBAction func onClscked(_ sender :UIButton){
        let path = Bundle.main.path(forResource:"bird",ofType:"mp3")
        let url = URL(fileURLWithPath: path!)
        soundPlayar= try? AVAudioPlayer(contentsOf:url)
        soundPlayar.play()
    }
}