我读到了iOS 7.1发布的新功能 在这个版本中,应用程序在找到iBeacon时打开 我做了更多测试,但此功能不起作用
你能帮助我吗?
self.beaconRegion = [[ESTBeaconRegion alloc] initWithProximityUUID:ESTIMOTE_PROXIMITY_UUID
identifier:@"EstimoteSampleRegion"];
self.beaconRegion.notifyOnEntry = TRUE;
self.beaconRegion.notifyOnExit = TRUE;
[self.beaconManager startRangingBeaconsInRegion:self.beaconRegion];
答案 0 :(得分:1)
您需要开始监控,而不是测距,以便在iBeacon检测上启动应用。无论应用程序是否已在后台,都是如此。确保您也实现了监视回调方法。
[self.beaconManager startMonitoringBeaconsInRegion:self.beaconRegion];