我目前在我的Swift iOS应用程序中有这个(我基本上是从一个例子中复制过来的),我一直在Xcode中构建和测试:
let s1 = NSURL(fileURLWithPath: NSBundle.mainBundle().pathForResource(audioFile as? String, ofType: "mp3")!)
do {
audioPlayers.player1 = try AVAudioPlayer(contentsOfURL:s1)
} catch {
print("Error getting the audio file 1")
}
我应该在我提交给App Store的版本的catch语句中做什么?