gpt4 book ai didi

iOS 13 - 如何检查用户是否已接受蓝牙权限?

转载 作者:行者123 更新时间:2023-12-01 23:56:46 27 4
gpt4 key购买 nike

作为 iOS 13 的一部分,应用程序如果想要访问蓝牙,现在需要请求许可。 enter image description here

如何检查用户是否已接受蓝牙权限?

最佳答案

试试这个:

var isBluetoothPermissionGranted: Bool {
if #available(iOS 13.1, *) {
return CBCentralManager.authorization == .allowedAlways
} else if #available(iOS 13.0, *) {
return CBCentralManager().authorization == .allowedAlways
}

// Before iOS 13, Bluetooth permissions are not required
return true
}

关于iOS 13 - 如何检查用户是否已接受蓝牙权限?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57238647/

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