如何隐藏"现在玩网址"在控制中心

时间:2015-06-08 13:58:55

标签: ios objective-c uiwebview control-center

我正在尝试隐藏正在UIWebView中播放的直播网址。 当您播放直播网址和打开控制中心(iOS)时,您会看到正在播放的网址:

image

我想用基于HTML或基于xcode的脚本隐藏它。

1 个答案:

答案 0 :(得分:2)

您可以使用MPNowPlayingInfoCenter控制此信息。 defaultCenter的{​​{1}}字典控制锁屏和命令中心当前音轨的显示内容。

nowPlayingInfo

文档中列出了完整的键列表,但您似乎希望将曲目名称设置为空字符串。

MPNowPlayingInfoCenter *infoCenter = [MPNowPlayingInfoCenter defaultCenter];

NSDictionary *nowPlayingInfo = @{
                                 MPMediaItemPropertyTitle : @"Media Name",
                                 MPMediaItemPropertyArtist : @"Media Artist"
                                 };

[infoCenter setNowPlayingInfo:[NSDictionary dictionaryWithDictionary:nowPlayingInfo]];