gpt4 book ai didi

iphone - 在没有 BluetoothManager 的情况下检查 iOS 5 上的蓝牙是否被禁用

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:23:38 26 4
gpt4 key购买 nike

我看到在 iOS 5 中,CoreBluetooth 提供了检查蓝牙是否被禁用的功能。从我看到的文档来看,它显然是针对蓝牙外设使用的。但是,我正在尝试检查蓝牙是否打开,因为我使用的是 GameKit (GKPeerPickerController),如果未启用,它将无休止地搜索蓝牙连接,这是一个问题。

我试着这样做:

CBCentralManager * manager = [[CBCentralManager alloc] init];

if (manager.state == CBCentralManagerStatePoweredOn ) {

//go ahead with GameKit
}

这不起作用,manager.state 始终等于 null。我在这里做错了什么?或者,是否有更好的方法来检查 iPhone 上的蓝牙状态?

编辑:我不想调用任何私有(private) API,因为我会将此应用程序提交到应用程序商店。我已经编辑了我的问题标题来澄清这一点。

最佳答案

好的,我通过这样做发现:

NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:FALSE], CBCentralManagerScanOptionAllowDuplicatesKey, nil];
NSMutableArray * discoveredPeripherals = [NSMutableArray new];
CBCentralManager * manager = [[CBCentralManager alloc] initWithDelegate:self queue:nil];
[manager scanForPeripheralsWithServices:discoveredPeripherals options:options];
[manager stopScan];

如果蓝牙关闭,系统将弹出一个警报 View ,提供打开蓝牙的选项。否则,如果它找到外围设备,它将调用相应的委托(delegate)方法,但如果该实现中没有任何内容,则您无需担心。

关于iphone - 在没有 BluetoothManager 的情况下检查 iOS 5 上的蓝牙是否被禁用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11534963/

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