我正在尝试在 UIView 中添加 WKWebView ,
代码似乎工作正常(页面加载边界很好,委托(delegate)打印消息没有错误)
但是 View (称为 ViewForStuffInWeb )保持空白,其中没有任何内容
有人能解释一下为什么吗?
import UIKit
import WebKit
class ViewController: UIViewController ,WKNavigationDelegate {
@IBOutlet var ViewForStuffInWeb: UIView!
var webView = WKWebView()
let request = "https://www.google.fr"
override func viewDidAppear(animated: Bool) {
super.viewDidAppear(animated)
self.automaticallyAdjustsScrollViewInsets = false
let config = WKWebViewConfiguration()
webView = WKWebView(frame: ViewForStuffInWeb.bounds ,configuration : config)
webView.navigationDelegate = self
ViewForStuffInWeb = webView
println("webview : frame :\(webView.frame) , bounds : \(webView.bounds)")
requesting(request)
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
func requesting (request :String) {
if let url = NSURL(string: request) {
webView.loadRequest(NSURLRequest(URL: url))
}
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func webView(webView: WKWebView, decidePolicyForNavigationAction navigationAction: WKNavigationAction, decisionHandler: (WKNavigationActionPolicy) -> Void) {
println("decide policy action")
decisionHandler(WKNavigationActionPolicy.Allow)
}
func webView(webView: WKWebView, decidePolicyForNavigationResponse navigationResponse: WKNavigationResponse, decisionHandler: (WKNavigationResponsePolicy) -> Void) {
println("decide policy response")
decisionHandler(WKNavigationResponsePolicy.Allow)
}
func webView(webView: WKWebView, didCommitNavigation navigation: WKNavigation!) {
println("commit navigation")
}
func webView(webView: WKWebView, didFailNavigation navigation: WKNavigation!, withError error: NSError) {
println("fail in didFailNavigation \(error)")
}
func webView(webView: WKWebView, didFailProvisionalNavigation navigation: WKNavigation!, withError error: NSError) {
println("fail in didFailProvisionalNavigation \(error)")
}
func webView(webView: WKWebView, didFinishNavigation navigation: WKNavigation!) {
println("finish navigation")
}
感谢阅读
Best Answer-推荐答案 strong>
您永远不会将 WKWebView 添加到 View 层次结构中。在您的 viewDidAppear 中,哪些代码应该真正移动到 viewDidLoad ,您可能想要替换:
ViewForStuffInWeb = webView
与:
ViewForStuffInWeb.addSubview(webView)
虽然不清楚 ViewForStuffInWeb 究竟是什么。仅当该 View 存在于您的 nib 中并且已连接时,上述操作才有效。
关于ios - 在 UIView 中创建 WKWebView,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/32399066/
|