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
Post a Comment