func playSound() { var audioPlayer = AVAudioPlayer() let soundURL = NSBundle.mainBundle().URLForResource("doorbell",withExtension: "mp3") audioPlayer = AVAudioPlayer(contentsOfURL: soundURL,error: nil) audioPlayer.play()}
我正在iOS iPhone模拟器中运行该应用程序.
我已将doorbell.mp3添加到应用程序中.在调试模式下,我可以看到soundURL有一个值,它不是零.
没有错误,但声音没有播放.
解决方法 您只需要从您的方法中移出audioPlayer的声明.试试这样:Swift 3或更高版本
var audioPlayer = AVAudioPlayer()func playSound() throws { let url = Bundle.main.url(forResource: "doorbell",withExtension: "mp3")! audioPlayer = try AVAudioPlayer(contentsOf: url) audioPlayer.preparetoPlay() audioPlayer.play()}
do { try playSound() } catch { print(error)}总结
以上是内存溢出为你收集整理的iOS Swift:声音没有播放全部内容,希望文章能够帮你解决iOS Swift:声音没有播放所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)