Skip to content

Instantly share code, notes, and snippets.

@KrauserHuang
Created April 21, 2021 06:45
Show Gist options
  • Save KrauserHuang/2f7472b11f26ff49624f55bdff1f54e1 to your computer and use it in GitHub Desktop.
Save KrauserHuang/2f7472b11f26ff49624f55bdff1f54e1 to your computer and use it in GitHub Desktop.
// 隨機播放,預設無,點選變成有
@IBAction func playShufflePressed(_ sender: UIButton) {
switch shuffleType {
case .no:
shuffleType = .yes
playShuffle.setImage(UIImage(systemName: SystemName.shuffleCircleFill), for: .normal)
songs?.shuffle()
case .yes:
shuffleType = .no
playShuffle.setImage(UIImage(systemName: SystemName.shuffleCircle), for: .normal)
// 將歌單改回預設
songs = songDefault
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment