媒体信息显示在模拟器中,但不显示在真实设备上

时间:2015-05-15 11:26:08

标签: swift media-player avfoundation

我已尝试使用此代码显示媒体信息:

import MediaPlayer

let audioInfo = MPNowPlayingInfoCenter.defaultCenter()
audioInfo.nowPlayingInfo = [ MPMediaItemPropertyTitle: "Miley_Cyrus_", MPMediaItemPropertyArtist:"artistName"]

这在模拟器上工作正常,如图所示:

enter image description here

但这在真正的设备上无法正常工作:

enter image description here

显示在模拟器中的实际设备中没有显示媒体信息。我错过了什么吗?

1 个答案:

答案 0 :(得分:1)

我刚刚找到了解决方案

UIApplication.sharedApplication().beginReceivingRemoteControlEvents()

这很好。

来自HERE的参考。