Facebook 推出了在网络应用程序中嵌入 360° 视频的选项。我正在尝试在 UIWebView 中显示嵌入的视频。但它不起作用。
这是我的代码,
let iStrEmbed = "<iframe src=\"https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2Ffacebook%2Fvideos%2F10153231379946729%2F&width=500&show_text=false&height=281&appId\" width=\"500\" height=\"281\" style=\"border:none;overflow:hidden\" scrolling=\"no\" frameborder=\"0\" allowTransparency=\"true\"></iframe>"
webVW.allowsInlineMediaPlayback = true
webVW.mediaPlaybackRequiresUserAction = false
webVW.loadHTMLString(iStrEmbed, baseURL: nil);
我注意到它甚至无法在移动设备上运行。它在 mac 上的所有浏览器中都能正常工作。
目前仅支持桌面吗?