var audioPlayerInstance : AVAudioPlayer! = nil // 再生するサウンドのインスタンス override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. // サウンドファイルのパスを生成 let soundFilePath = Bundle.main.path(forResource: "test", ofType: "mp3")! let sound:URL = URL(fileURLWithPath: soundFilePath) // AVAudioPlayerのインスタンスを作成 do { audioPlayerInstance = try AVAudioPl