gpt4 book ai didi

ios - 每次应用程序启动时都会调用 WKWebView 请求 DeviceMotion 和 DeviceOrientation 的权限

转载 作者:行者123 更新时间:2023-11-29 05:11:25 25 4
gpt4 key购买 nike

有没有办法只请求一次 DeviceMotion 和 DeviceOrientation 权限,而不是每次应用启动时。我正在使用

请求权限
webView.evaluateJavaScript("DeviceMotionEvent.requestPermission().then(response => { if (response == 'granted') {window.addEventListener('devicemotion', (e) => {})}}).catch(console.error)")

webView.evaluateJavaScript("DeviceOrientationEvent.requestPermission().then(response => { if (response == 'granted') {window.addEventListener('deviceorientation', (e) => {})}}).catch(console.error)")

那么有没有办法始终授予权限?

最佳答案

您应该使用Userdefaults来存储一些标志。一旦您请求许可,请在 Userdefaults 中为该标志设置一些值。当您的应用程序启动时,请检查您是否已设置该标志。类似的东西,

    if UserDefaults.standard.bool(forKey: "openedOnce") {

} else {
webView.evaluateJavaScript("DeviceMotionEvent.requestPermission().then(response => { if (response == 'granted') {window.addEventListener('devicemotion', (e) => {})}}).catch(console.error)")
webView.evaluateJavaScript("DeviceOrientationEvent.requestPermission().then(response => { if (response == 'granted') {window.addEventListener('deviceorientation', (e) => {})}}).catch(console.error)")
}

UserDefaults.standard.set(true, forKey: "openedOnce")
UserDefaults.standard.synchronize()

关于ios - 每次应用程序启动时都会调用 WKWebView 请求 DeviceMotion 和 DeviceOrientation 的权限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59643061/

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