想要練習做出 Music App 想了許久,先做簡易版的之後會再繼續研究一些進階功能~~
建立 IBOutlet
UILabel 顯示歌名、歌手名字、歌曲總時間、當前播放的時間
UIButton 顯示播放的按鈕、上一首的按鈕、下一首的按鈕
UISlider 顯示歌曲播放進度
UIImageView 顯示歌曲圖片
viewDidLoad( )
設定音樂時間秒數格式
func formatConversion(time: Float64) -> String {
let songLength = Int(time)
let minutes = Int(songLength / 60)
let seconds = Int(songLength % 60)
var time = ""
if minutes < 10 {
time = "0\(minutes):"
} else {
time = "\(minutes)"
}
if seconds < 10 {
time += "0\(seconds)"
} else {
time = time + "\(seconds)"
}
return time
}
Github
參考文章