我有一个非常简单的应用程序,它仅在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还不算老,所以我在互联网上找不到任何有用的东西。我希望有人能帮助我。
编辑:可以通过在项目->功能中关闭“应用程序沙箱”来停止第二次警告
答案 0 :(得分:1)
此错误是由于启用了已启用的沙箱引起的。在功能->沙箱中禁用该功能。
accessing preferences outside an application's container requires user- preference-read or file-read-data sandbox access