我有一个非常简单的应用程序,它只在一个WKWebView
中显示一个网站,但是在升级到MacOS Mojave之后,我会收到一些奇怪的警告消息。
应用程序会编译,但不会启动。
我的代码:
@IBOutlet var webView: WKWebView!
override func loadView() {
webView = WKWebView()
webView.navigationDelegate = self
view = webView
}
override func viewDidLoad() {
super.viewDidLoad()
let url = URL(string: "https://www.apple.com")!
webView.load(URLRequest(url: url))
}
我得到的警告是:
2018-10-08 19:27:24.466406+0200 MyApp[616:13277] [default] Unable to
load Info.plist exceptions (eGPUOverrides)
2018-10-08 19:27:24.689229+0200 MyApp[616:13232] [User Defaults]
Couldn't read values in CFPrefsPlistSource<0x600002910070> (Domain:
com.apple.Accessibility, User: kCFPreferencesCurrentUser, ByHost: No,
Container: kCFPreferencesNoContainer, Contents Need Refresh: No):
accessing preferences outside an application's container requires user-
preference-read or file-read-data sandbox access
因为Macos Mojave没有那么老,所以我在网上找不到任何有用的东西。我希望有人能帮助我。
编辑:第二个警告可以通过关闭Project->Capabilities中的“app sandbox”来停止。
最佳答案
此错误是由启用的沙盒引起的。已在“功能”->“沙盒”中禁用。
accessing preferences outside an application's container requires user- preference-read or file-read-data sandbox access
关于swift - macOS Mojave中的WkWebView问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52707411/