Swift错误:在两个地方实现了类但我没有触及的文件?

时间:2017-10-06 08:56:06

标签: ios swift uiwebview

我正在测试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!))

    } }

不幸的是,我在下面收到此错误,我已将App传输安全设置添加到我的应用中,就像其他类似问题的答案一样,但它仍然无效......

有人可以帮忙吗?

  

objc [946]:类PLBuildVersion在两者中实现   /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices   (0x124feecc0)和   /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk/System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices   (0x124e056f0)。将使用两者之一。哪一个未定义。

1 个答案:

答案 0 :(得分:0)

这是xCode在模拟真实iOS设备时的错误,有时是通过这种错误。 请检查您的网址是否有效。

let url = URL(string: "https://google.com")
webView.loadRequest(URLRequest(url: url!)) 

我在google网址上使用了相同的代码,但它正常运行。