Swift - 当按下不同UITableView单元格中的另一个播放按钮时,如何自动停止当前播放音频?

时间:2017-11-18 11:57:20

标签: ios iphone swift avplayer

我是一个快速的初学者,正在开发我的第一个iOS应用程序。

我有一个TableViewController,它有几个单元格,每个单元格都包含一个播放按钮。当按下几个播放按钮时,会同时播放几个不同的音频,但是当我按下另一个播放按钮时,我想停止当前播放的音频。

以下是我创建的示例代码。

请给我一个建议。非常感谢你!

ViewController.swift

import UIKit

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

@IBOutlet weak var tableView: UITableView!

override func viewDidLoad() {
    super.viewDidLoad()

    tableView.delegate = self
    tableView.dataSource = self

    tableView.register(UINib(nibName: "TableViewCell", bundle: nil), forCellReuseIdentifier: "cell")

}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return 3
}

func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    return 88
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
    return cell
}


}

TableViewCell.swift

import UIKit
import AVFoundation

class TableViewCell: UITableViewCell, AVAudioPlayerDelegate {

var audioPlayer: AVAudioPlayer = AVAudioPlayer()
var counter = 0

@IBAction func buttonTapped(_ sender: Any) {

    // Audio player setting
    do {

        audioPlayer = try AVAudioPlayer(contentsOf: URL.init(fileURLWithPath: Bundle.main.path(forResource: "sample", ofType: "mp3")!))
        audioPlayer.delegate = self
        audioPlayer.prepareToPlay()

    } catch {
        print(error)
    }

    if counter == 0 {
        audioPlayer.play()
        counter = 1
    } else {
        audioPlayer.stop()
        counter = 0
    }
}

}

1 个答案:

答案 0 :(得分:0)

一种可能的解决方案是创建_currentActivePlayer对象变量。当你开始播放音频然后分配给播放播放器。当其他小区想要播放音频时,请检查该变量,停止播放器并分配新的播放播放器。