6

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

图片.

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

4

1 回答 1

2

您可以使用MPNowPlayingInfoCenter控制此信息。的字典控制在锁定屏幕和命令中心上显示有关当前音轨的内容defaultCenternowPlayingInfo

MPNowPlayingInfoCenter *infoCenter = [MPNowPlayingInfoCenter defaultCenter];

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

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

文档中列出了完整的键列表,但看起来您希望将轨道名称设置为空字符串。

MPMediaItemPropertyTitle : @""
于 2015-11-07T17:04:00.490 回答