CBCentralManagerOptionShowPowerAlertKey CBCentralManager true. iOS , " Bluetooth, " " ". Bluetooth.
SampleCode :
centralManager = CBCentralManager(delegate: self, queue: nil, options: [CBCentralManagerOptionShowPowerAlertKey: true])
SampleCode Objective-C:
centralManager = [[CBCentralManager alloc]
initWithDelegate:self
queue:dispatch_get_main_queue()
options:@{CBCentralManagerOptionShowPowerAlertKey: @(YES)}];
..:)