AVAudioPlayer pause() 未按预期运行
Posted
技术标签:
【中文标题】AVAudioPlayer pause() 未按预期运行【英文标题】:AVAudioPlayer pause() not behaving as expected 【发布时间】:2017-10-28 19:47:29 【问题描述】:我在 AVAudioPlayer 的 pause() 函数中看到了这种意外行为。当我单击“暂停”按钮时,音频实际上应该在当前时间暂停,并在调用 play() 时从它恢复。但是在这里,当我点击 pause() 时,音频暂停,当我点击 play() 时,音频从头开始播放。 pause() 的行为类似于 stop()。
var player: AVAudioPlayer = AVAudioPlayer()
@IBAction func PlayPauseAudioButton(_ sender: UIButton)
if sender.currentImage == #imageLiteral(resourceName: "play-btn")
sender.setImage(#imageLiteral(resourceName: "pause-btn"), for: .normal)
do
let audioPath = Bundle.main.path(forResource: "aug-ps-raj", ofType: "mp3")
try player = AVAudioPlayer(contentsOf: NSURL(fileURLWithPath: audioPath!) as URL)
catch
// Catch the error
player.play()
else
sender.setImage(#imageLiteral(resourceName: "play-btn"), for: .normal)
player.pause()
【问题讨论】:
【参考方案1】:问题是每次点击播放按钮时都会创建一个新的播放器实例。相反,您可以提前创建 AVAudioPlayer
实例,并且只在您的按钮单击处理程序中调用 play() 和 pause()。
【讨论】:
以上是关于AVAudioPlayer pause() 未按预期运行的主要内容,如果未能解决你的问题,请参考以下文章
Android 布局预览编辑器 - 布局不可见:java.lang.IllegalArgumentException:对象不是声明类的实例