所以我有这个peripheralManager。我想检查它的状态是否打开:
if (peripheralManager.state < CBPeripheralManagerStatePoweredOn) {
UIAlertView *errorAlert = [[UIAlertView alloc] initWithTitle:@"Bluetooth must be enabled" message:@"To search for pics, you have to enable bluetooth." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[errorAlert show];
}
我正在我的 iPhone 5 上测试它,蓝牙显然是打开的。但它总是显示,它是关闭的。
更新 我该如何解决?