Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Question about iOS6 peripheral bluetooth connection.

in info.plist if I add UIBackgroundModes bluetooth-peripheral, at app launch it asks permission for first time.

"appname" would like to make data available to nearby bluetooth devices even when you're not using the app "appname" would like to make data available to nearby bluetooth devices even when you're not using the app

if I deny (don't allow) the request, setting - privacy - Bluetooth Sharing - "Appname" turned to "OFF";

I set to listen CBPeripheralManagerDelegate to see if I can, but it always return "ON" even I deny the request. (that's also make sense because it is "on" before it goes to background)

- (void)peripheralManagerDidUpdateState:(CBPeripheralManager *)peripheral{
NSLog(@"%s",__func__);
NSLog(@"%@",[peripheral description]);
NSString *state = nil;
switch (peripheral.state) {
    case CBPeripheralManagerStateResetting:
        state = @"resetting"; break;
    case CBPeripheralManagerStateUnsupported:
        state = @"unsupported"; break;
    case CBPeripheralManagerStateUnauthorized:
        state = @"unauthorized"; break;
    case CBPeripheralManagerStatePoweredOff:
        state = @"off"; break;
    case CBPeripheralManagerStatePoweredOn:
        state = @"on"; break;
    default:
        state = @"unknown"; break;
}
NSLog(@"peripheralManagerDidUpdateState:%@ to %@ (%d)", peripheral, state, peripheral.state);

}

I see the CBPeripheralManagerStateUnauthorized looks like it shows denied status but I can't get this status even I denied request.

Question is: "Is there any way I can find out user denied background access request?"

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.