StackOverflow我想尝试使用swift lang从ios7+的控制中心读取当前正在播放的歌曲在objective-c中我可以使用这段代码阅读它
NSDictionary *nowPlaying = @{MPMediaItemPropertyArtist: currentTrack.artist,
MPMediaItemPropertyAlbumTitle: currentTrack.title};
但我不知道如何在 swift Ps 中编写 song_info_getter 方法我在 SO 上找不到类似的问题
具体来说,我无法获取当前的曲目信息。(艺术家/专辑/等)
我在桌面(mac)上做了这个:
func get_iTunes_data() {
NSDistributedNotificationCenter.defaultCenter().addObserver(self, selector: "allDistributedNotifications:", name: "com.apple.iTunes.playerInfo", object: "com.apple.iTunes.player")
}
var now : String = ""
func allDistributedNotifications (note : NSNotification) {
let userInfo:NSDictionary = note.userInfo as NSDictionary
println(userInfo)
}
但我不知道如何为 iOS 制作这样的东西