Created
April 21, 2021 06:45
-
-
Save KrauserHuang/2f7472b11f26ff49624f55bdff1f54e1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 隨機播放,預設無,點選變成有 | |
@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