AVAudioPlayer no longer working in Swift 2.0 / Xcode 7 beta
问题 For the var testAudio declaration in my iPhone app, I am receiving an error here "Call can throw, but errors cannot be thrown out of a property initializer" import UIKit import AVFoundation class ViewController: UIViewController { var testAudio = AVAudioPlayer(contentsOfURL: NSURL (fileURLWithPath: NSBundle.mainBundle().pathForResource("testAudio", ofType: "wav")!), fileTypeHint:nil) This happened when I moved to the Xcode 7 beta. How can I get this audio clip functioning in Swift 2.0? 回答1: