我正在尝试在应用程序收到通知时播放自定义声音,这是Apple Docs的一部分,应通过以下方式进行:
You can package the audio data in an aiff, wav, or caf file. Then, in Xcode, add the sound file to your project as a nonlocalized resource of the app bundle
我的问题是如何创建非本地化资源?当您将音频文件拖放到Xcode项目中时,会自动创建它吗?是否在Info.plist中指定了?

我可以使用以下代码播放声音文件:

if let buttonBeep = self.setupAudioPlayerWithFile("0897", type:"aiff") {
    self.buttonBeep = buttonBeep
}

buttonBeep?.volume = 1.0
buttonBeep?.play()

...
func setupAudioPlayerWithFile(file:NSString, type:NSString) -> AVAudioPlayer?  {
    let path = NSBundle.mainBundle().pathForResource(file as String, ofType: type as String)
    let url = NSURL.fileURLWithPath(path!)
    var audioPlayer:AVAudioPlayer?
    do {
        try audioPlayer = AVAudioPlayer(contentsOfURL: url)
    } catch {
        print("Player not available")
    }

    return audioPlayer
}

但是在收到推送通知时没有声音播放。

最佳答案

当您将声音文件拖到Xcode中时,请确保选中“添加到目标”框。

08-24 21:54