swiftで音楽を流す時に出るエラーについて。
import UIKit
import AVFoundation
class ViewController: UIViewController {
var player: AVAudioPlayer = AVAudioPlayer()
override func viewDidLoad() {
super.viewDidLoad()
let audioPath
= NSBundle.mainBundle().pathForResource("bomb", ofType: "m4a")!
do {
try player
= AVAudioPlayer(contentsOfURL: NSURL(fileURLWithPath: audioPath))
player.play()
} catch {
// Process error here
}
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
このように入力し、アプリを実行すると次のようなエラーが出ます。
fatal error: unexpectedly found nil while unwrapping an Optional value
(lldb)
何が原因になっているのでしょうか?
実際、bomb.m4aというファイルはproject内に挿入しておりますし、実際に音楽として聞くこともできます。
しかしアプリの実行ができておりません。
よろしくお願いします。