我在SO上的其他帖子中已经读到,不可能以编程方式禁用蓝牙。

这有意义吗?当我订阅(google)附近的api时以编程方式启用它。

这是我的代码。取消订阅不会禁用BT。

还有其他方法可以实现吗?

/// Stops publishing/subscribing.
public func unsubscribeNearbyApi() {
    subscription = nil
    //                    self.messageMgr?.removeObserver(<#T##observer: NSObject##NSObject#>, forKeyPath: <#T##String#>)
    //                    self.messageMgr?.removeObserver(<#T##observer: NSObject##NSObject#>, forKeyPath: <#T##String#>, context:<#T##UnsafeMutablePointer<Void>#>)
}

/// Starts scanning for nearby devices that are publishing
// their names.
func subscribeNearbyApi() {

    let params: GNSSubscriptionParams = GNSSubscriptionParams.init(
        messageNamespace: "inline-beacon",
        type: "line",
        strategy:
        GNSStrategy.init(paramsBlock: { (params: GNSStrategyParams!) -> Void in
            params.includeBLEBeacons = true;
        }))

    if (self.messageMgr == nil)
    {
        getPermissions()
    }
    if let messageMgr = self.messageMgr {
        subscription = messageMgr.subscriptionWithParams(params,
            messageFoundHandler:{[unowned self] (message: GNSMessage!) -> Void in

最佳答案

取消订阅Google附近不会禁用蓝牙;它只会停止执行任何BLE(低功耗蓝牙)操作。

确实,Apple没有提供在iOS上以编程方式禁用/启用BT的方法。这个想法是用户应该完全控制它。

10-07 22:07