iOS Swift:声音没有播放

iOS Swift:声音没有播放,第1张

概述在我的iOS Swift应用程序中,我想点击一个按钮播放声音. func playSound() { var audioPlayer = AVAudioPlayer() let soundURL = NSBundle.mainBundle().URLForResource("doorbell", withExtension: "mp3") a 在我的iOS Swift应用程序中,我想点击一个按钮播放声音.
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:声音没有播放所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1109305.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存