The scenario is as follows. I have an already deployed app being used by people. I am considering implementing some experimental Bluetooth Low Energy features, bu
iOS 7 has a new options
parameter in the create of CBCentralManager
to turn this off.
I'd love a solution for earlier iOS.
You can use the following when you initialise the CBCentralManager
.
NSDictionary *options = @{CBCentralManagerOptionShowPowerAlertKey: @NO};
self.manager = [[CBCentralManager alloc] initWithDelegate:self queue:nil options:options];
I may have not explained it correctly, please right into the comment if there's any concern.