如何在 table 上再次单击时停止歌曲单击另一个单元格时查看和播放另一首歌曲
How to stop song when click again on table view and play another song when click another cell
我有一些歌曲并显示在表格视图中。当我按下手机时,它正在播放歌曲。我想在触摸同一个单元格时停止,但如果我触摸另一个单元格,我想让它继续播放新歌。
extension SoundsViewController: UITableViewDataSource,UITableViewDelegate{
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return songs.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = myTableView.dequeueReusableCell(withIdentifier: "soundsCell") as! SoundsTableViewCell
cell.soundPicture.image = UIImage(named: "cell1")
cell.soundLabel.text = songs[indexPath.row]
cell.playStopImage.image = UIImage(named: "play")
if selectedItemIndex == indexPath.row {
cell.playStopImage.image = UIImage(named: "pause")
}
return cell
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 120
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
self.selectedItemIndex = indexPath.row
playSong(song: songs[indexPath.row], selectedItemIndex: selectedItemIndex!)
self.myTableView.reloadData()
}
}
func playSong(song: String, selectedItemIndex: Int){
do {
audioPlayer = try AVAudioPlayer(contentsOf: URL.init(fileURLWithPath: Bundle.main.path(forResource: song, ofType: "mp3")!))
audioPlayer.numberOfLoops = -1
audioPlayer.play()
var audioSession = AVAudioSession.sharedInstance()
do {
try audioSession.setCategory(AVAudioSessionCategoryPlayback)
}catch{
print(error)
}
}catch{
print(error)
}
}
大概你的 audioPlayer
是你的视图控制器的一个实例变量。
在创建新的 AVAudioPlayer 之前更改您的 playSong 函数以调用 audioPlayer.stop()。那应该会停止之前的声音。
编辑:
将这样的函数添加到您的视图控制器:
override func tableView(_ tableView: UITableView, willSelectRowAt indexPath: IndexPath) -> IndexPath? {
if let selectedRow = tableView.indexPathForSelectedRow {
print("Deselecting row \(selectedRow.row). Stop playing sound")
audioPlayer.stopPlaying()
tableView.deselectRow(at: indexPath, animated: false)
if selectedRow == indexPath {
return nil
}
}
print("Selecting row \(indexPath.row). Start playing sound")
playSong(song: songs[indexPath.row], selectedItemIndex: selectedItemIndex!)
return indexPath
}
我有一些歌曲并显示在表格视图中。当我按下手机时,它正在播放歌曲。我想在触摸同一个单元格时停止,但如果我触摸另一个单元格,我想让它继续播放新歌。
extension SoundsViewController: UITableViewDataSource,UITableViewDelegate{
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return songs.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = myTableView.dequeueReusableCell(withIdentifier: "soundsCell") as! SoundsTableViewCell
cell.soundPicture.image = UIImage(named: "cell1")
cell.soundLabel.text = songs[indexPath.row]
cell.playStopImage.image = UIImage(named: "play")
if selectedItemIndex == indexPath.row {
cell.playStopImage.image = UIImage(named: "pause")
}
return cell
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 120
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
self.selectedItemIndex = indexPath.row
playSong(song: songs[indexPath.row], selectedItemIndex: selectedItemIndex!)
self.myTableView.reloadData()
}
}
func playSong(song: String, selectedItemIndex: Int){
do {
audioPlayer = try AVAudioPlayer(contentsOf: URL.init(fileURLWithPath: Bundle.main.path(forResource: song, ofType: "mp3")!))
audioPlayer.numberOfLoops = -1
audioPlayer.play()
var audioSession = AVAudioSession.sharedInstance()
do {
try audioSession.setCategory(AVAudioSessionCategoryPlayback)
}catch{
print(error)
}
}catch{
print(error)
}
}
大概你的 audioPlayer
是你的视图控制器的一个实例变量。
在创建新的 AVAudioPlayer 之前更改您的 playSong 函数以调用 audioPlayer.stop()。那应该会停止之前的声音。
编辑:
将这样的函数添加到您的视图控制器:
override func tableView(_ tableView: UITableView, willSelectRowAt indexPath: IndexPath) -> IndexPath? {
if let selectedRow = tableView.indexPathForSelectedRow {
print("Deselecting row \(selectedRow.row). Stop playing sound")
audioPlayer.stopPlaying()
tableView.deselectRow(at: indexPath, animated: false)
if selectedRow == indexPath {
return nil
}
}
print("Selecting row \(indexPath.row). Start playing sound")
playSong(song: songs[indexPath.row], selectedItemIndex: selectedItemIndex!)
return indexPath
}