1

我想知道打开 Youtube 播放列表的方案。

我有这个代码:

if ([[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString      stringWithFormat:@"youtube://playlist?list=PLgrYntDWyYDdHwZney5QoTDFQrphRmYoK"]]]//https://twitter.com/cms24es
    ) {

}else if ([[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"https://twitter.com/TmrrrsApp"]]]//https://twitter.com/cms24es
          ) {

}

如果我使用youtube://,我知道打开视频的方案,但要打开播放列表,我不知道如何。

4

1 回答 1

0

好吧,我猜 youtube 不理解这样的播放列表的浏览器 URL -

http://www.youtube.com/playlist?list=PLgrYntDWyYDdHwZney5QoTDFQrphRmYoK

或者,转到您的视频->播放列表-你的播放列表

右键单击播放列表并选择“复制链接地址”

复制链接地址

它提供了一个类似这样的链接 -

http://www.youtube.com/watch?v=ILwOQV32rHg&list=FLLpWow4PGIVkCJifJxrMfwA

使用它作为 URI 在本地 youtube 应用程序中播放。

youtube://www.youtube.com/watch?v=ILwOQV32rHg&list=FLLpWow4PGIVkCJifJxrMfwA
于 2013-11-14T15:42:41.250 回答