我正在研究MusicApp。我想在哪里播放最近在我的手机上通过Gaana,Spotify,Wynk,napster等任何音乐应用播放的歌曲。
我已经尝试过使用iTunes MusicApp,但仅在iTunes应用程序处于后台时才允许。 请指导我。
if let mediaItem = player.nowPlayingItem {
let title: String = mediaItem.value(forProperty: MPMediaItemPropertyTitle) as! String
let albumTitle: String = mediaItem.value(forProperty: MPMediaItemPropertyAlbumTitle) as! String
let artist: String = mediaItem.value(forProperty: MPMediaItemPropertyArtist) as! String
print("\(title) on \(albumTitle) by \(artist)")
}