Check if bluetooth is on without system popup on iOS 7 -


in ios 6 it's not possible check if bluetooth on without system popup being shown:

cbcentralmanager* testbluetooth = [[cbcentralmanager alloc] initwithdelegate:nil queue: nil];

but, when [[cbcentralmanager alloc] init...] happens, system popups alert user, if bluetooth off.

is possible in ios 7?

in ios7, prompt enable bluetooth can disabled if initialize manager following options.

mycentralmanager = [[cbcentralmanager alloc] initwithdelegate:self queue:nil options:@{cbcentralmanageroptionshowpoweralertkey:[nsnumber numberwithbool:no]}]; 

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -