gpt4 book ai didi

ios - 将 UIWebView 迁移到 WKWebView

转载 作者:可可西里 更新时间:2023-11-01 00:36:47 24 4
gpt4 key购买 nike

在我的 iOS 应用程序中,我试图将旧的 UIWebView 代码迁移到 WKWebView,因为 WKWebView 在理论上比 UIWebView 更快、更高效。

我在互联网上看过很多教程(如 hereherehere ),但找不到任何解释如何以编程方式简单地将 WKWebView 添加到我的应用程序的内容。

有人可以给我指出一个简单的教程或在评论中解释如何以编程方式将此代码转换为 WKWebView 吗?提前致谢。

查看 Controller.swift:

import UIKit

class ViewController: UIViewController, UIWebViewDelegate {

override func viewDidLoad() {
super.viewDidLoad()

let myWebView:UIWebView = UIWebView(frame: CGRectMake(0, 0, UIScreen.mainScreen().bounds.width, UIScreen.mainScreen().bounds.height))

myWebView.loadRequest(NSURLRequest(URL: NSURL(string: "http://www.communionchapelefca.org/app-home")!))
self.view.addSubview(myWebView)

最佳答案

将“WebKit”框架添加到您的类中。

请引用下面的代码

import UIKit
import WebKit

class ViewController: UITableViewController {

override func viewDidLoad() {
super.viewDidLoad()

let myWebView:WKWebView = WKWebView(frame: CGRectMake(0, 0, UIScreen.mainScreen().bounds.width, UIScreen.mainScreen().bounds.height))

myWebView.loadRequest(NSURLRequest(URL: NSURL(string: "http://www.communionchapelefca.org/app-home")!))
self.view.addSubview(myWebView)

}
}

关于ios - 将 UIWebView 迁移到 WKWebView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36214247/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com