Swift,iOS:在文件访问捕获中做什么

时间:2016-08-05 07:05:42

标签: ios swift try-catch avaudioplayer nsurl

我目前在我的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语句中做什么?

0 个答案:

没有答案