在 iOS 6中,如果不显示系统弹出窗口,则无法检查蓝牙是否打开:
CBCentralManager* testBluetooth = [[CBCentralManager alloc] initWithDelegate:nil queue: nil];
但是,当 [[CBCentralManager alloc] init...] 发生时,如果蓝牙关闭,系统会向用户弹出警报。
现在这在 iOS 7 中可行吗?
在 iOS 6中,如果不显示系统弹出窗口,则无法检查蓝牙是否打开:
CBCentralManager* testBluetooth = [[CBCentralManager alloc] initWithDelegate:nil queue: nil];
但是,当 [[CBCentralManager alloc] init...] 发生时,如果蓝牙关闭,系统会向用户弹出警报。
现在这在 iOS 7 中可行吗?