如何在控制中心隐藏"正在播放网址"

Joo*_*ost 6 objective-c uiwebview ios control-center

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

图片.

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

JAL*_*JAL 2

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

MPNowPlayingInfoCenter *infoCenter = [MPNowPlayingInfoCenter defaultCenter];

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

[infoCenter setNowPlayingInfo:[NSDictionary dictionaryWithDictionary:nowPlayingInfo]];
Run Code Online (Sandbox Code Playgroud)

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

MPMediaItemPropertyTitle : @""
Run Code Online (Sandbox Code Playgroud)