Сохранение состояния CoreBluetooth: правильный способ восстановления CBCentralManager
Как правильно восстановить CBCentralManager из AppDelegate, когда приложение запускается с параметрами из-за события сохранения состояния?
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// The system provides the restoration identifiers only for central managers that had active or pending peripheral connections or were scanning for peripherals.
NSArray * centralManagerIdentifiers = launchOptions[UIApplicationLaunchOptionsBluetoothCentralsKey];
if (centralManagerIdentifiers != nil) {
for (int i=0; i<[centralManagerIdentifiers count]; i++) {
NSString * identifier = [centralManagerIdentifiers objectAtIndex:i];
NSLog(@"bluetooth central key identifier %@", identifier);
// here I expect to re-instatiate the CBCentralManager but not sure how and if this is the best place..
}
}
// Override point for customization after application launch.
return YES;
}
1 ответ
Когда вы получаете список идентификаторов, вы должны пройти по этому списку и инициализировать экземпляр (ы) CBCentralManager
для каждого идентификатора. Список содержит NSString
объекты
NSArray *centralManagerIdentifiers = launchOptions[UIApplicationLaunchOptionsBluetoothCentralsKey];
for (NSString *centralManagerIdentifier in centralManagerIdentifiers) {
CBCentralManager *centralManager = [[CBCentralManager alloc] initWithDelegate:self
queue:nil
options:@{CBCentralManagerOptionRestoreIdentifierKey: centralManagerIdentifier}];
[self.cenralManagers addObject:centralManager];
}
Для более подробной информации, пожалуйста, обратитесь к Сохранению и восстановлению состояния в Базовом Руководстве по программированию Bluetooth.