对于var testAudio
我的 iPhone 应用程序中的声明,我在这里收到一个错误
“调用可以抛出,但不能从属性初始化程序中抛出错误”
import UIKit
import AVFoundation
class ViewController: UIViewController {
var testAudio = AVAudioPlayer(contentsOfURL: NSURL (fileURLWithPath: NSBundle.mainBundle().pathForResource("testAudio", ofType: "wav")!), fileTypeHint:nil)
这发生在我迁移到 Xcode 7 测试版时。
我怎样才能让这个音频剪辑在 Swift 2.0 中运行?