ios swift UIwebView

吕寒
2023-12-01
        //自适应屏幕大小   
        let webView = UIWebView(frame:self.view.bounds)
        let urlStr = "http://baidu.com"
        let url = NSURL(string: urlStr)
        let request = NSURLRequest(URL: url!)
        webView.loadRequest(request)
 类似资料:

相关阅读

相关文章

相关问答