我正在测试swifts UIWebView,我已经在我的故事板上放置了一个简单的UIWebview,这是我的viewController代码
import UIKit
class ViewController: UIViewController {
@IBOutlet weak var webView: UIWebView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let url = URL(string: "https://mywebsitehere.com")
webView.loadRequest(URLRequest(url: url!))
} }
不幸的是,我在下面收到此错误,我已经将应用程序传输安全设置添加到我的应用程序中,就像类似问题的其他答案所说的那样,但它仍然不起作用......
谁能帮忙?
objc[946]:类 PLBuildVersion 在两者中实现 /Applications/Xcode.app/Content/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices (0x124feecc0)和 /Applications/Xcode.app/Content/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices (0x124e056f0).将使用两者之一。哪一个是未定义的。
xCode在模拟真实iOS设备时的错误,有时它会通过这种错误。请检查您的网址是否处于活动状态。
let url = URL(string: "https://google.com")
webView.loadRequest(URLRequest(url: url!))
我在谷歌URL上使用了相同的代码,它正在工作。