我的WebView顯示YouTube視頻:啓動YouTube應用在iOS設備
class ViewController: UIViewController {
@IBOutlet var webView: UIWebView!
override func viewDidLoad() {
super.viewDidLoad()
let url = NSURL(string: "http://www.cast.html")
let request = NSURLRequest(URL: url!)
webView.loadRequest(request)
}
HTML鏈接看起來是這樣的:
<div class="h_iframe">
<iframe webkit-playsinline height="480" width="2" src="https://www.youtube.com/embed/ru1_lI84Wkw?feature=player_detailpage&playsinline=1" frameborder="0" allowfullscreen></iframe></div>
完美的作品,但我想也讓用戶觀看它在YouTube上的應用程序。 是否有可能在webview中創建啓動YouTube應用(如果安裝在設備上)的鏈接?
任何幫助表示讚賞。
可能重複[iOS的開放YouTube應用與查詢(URL方案)(http://stackoverflow.com/問題/ 18695537/ios-open-youtube-app-with-query-url-schemes) –