CLLocationManager didEnterRegion: с iBeacon, пока приложение приостановлено
пытаюсь разбудить мое приложение (перезапустить его), когда оно входит в мою определенную область маяка, но я просто могузаставить его работать. Это шаги и код, который ям с помощью.
Задавать "Расположение обновлений " Фоновый режим на ДА.Следите за моим CLBeaconRegion
NSUUID *uuid = [[NSUUID alloc] initWithUUIDString:@"EBEFD083-70A2-47C8-9837-E7B5634DF524"];
beaconRegion = [[CLBeaconRegion alloc] initWithProximityUUID:uuid identifier:@"daRegion"];
beaconRegion.notifyEntryStateOnDisplay = NO;
beaconRegion.notifyOnEntry = YES;
beaconRegion.notifyOnExit = YES;
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
[self.locationManager startMonitoringForRegion:beaconRegion];
Реализуйте методы делегата
- (void)locationManager:(CLLocationManager *)manager didDetermineState:(CLRegionState)state forRegion:(CLRegion *)region;
- (void)locationManager:(CLLocationManager *)manager didEnterRegion:(CLRegion *)region;
- (void)locationManager:(CLLocationManager *)manager didExitRegion:(CLRegion *)region;
Что-нибудь, что я мог бы пропустить? Я прочитал документацию, посты в блогах, форумы и ничего не работает.это это один из сайтов, которые я читаю, иэтот это другой.