只是无法找出这个webView
有什么问题,它只是保持空白没有错误。如果我尝试没有视频ID参数,只是“https://www.apple.com”它的工作原理。有任何想法吗?
import UIKit
import WebKit
class VideoPlayerVC: UIViewController, WKUIDelegate {
@IBOutlet weak var webview2: WKWebView!
var videoId: String?
override func viewDidLoad() {
//test video id, this prints the booty workouts id on youtube!This target also opens on youtube the id on the end of this url: https://www.youtube.com/watch?v=695PN9xaEhs
if let videoId = videoId {
print(videoId)
}
webview2.load(URLRequest(url: URL(fileURLWithPath: "https://www.youtube.com/watch?v=\(videoId)")))
}
}
你的身份证工作正常:
override func viewDidLoad() {
super.viewDidLoad()
let webView = WKWebView(frame: CGRect(x: 0, y: 0, width: self.view.frame.size.width, height: self.view.frame.size.height))
self.view.addSubview(webView)
let url = URL(string: "https://www.youtube.com/watch?v=695PN9xaEhs")
webView.load(URLRequest(url: url!))
}