我正在开发一个使用 iBeacons 进行室内导航的应用程序,我发现该函数locationManager:rangingBeaconsDidFailForRegion:withError:
被调用的速率不够高,所以我将添加 CoreBluetooth 的 RSSI 数据centralManager:didDiscoverPeripheral:advertisementData:RSSI:
。
我发现了一个奇怪的事实:当我使用 CoreLocation 收听 iBeacon 并记录外围设备 ID 时:
- (void)centralManager:(CBCentralManager *)central
didDiscoverPeripheral:(CBPeripheral *)peripheral
advertisementData:(NSDictionary *)advertisementData
RSSI:(NSNumber *)RSSI
{
NSLog(@"%@, RSSI: %@", peripheral, RSSI);
每个信标在不同的设备上使用不同的 UUID 报告:
A25804BD-D77A-5004-4C2C-301D996C7367 - my iPhone 5
843F4237-6059-9A5E-AA34-0BD92304BE1F - colleague's iPhone 5
77685805-C253-52BD-B787-8B95308834FB - other colleague's iPad mini
想法是将每个信标的 UUID 绑定到其位置,因此这种行为非常破坏功能。
为什么物理上相同的信标(未关闭/打开)的 UUID 在不同的设备上是不同的?这是预期的行为吗?如果是,我怎么能选择退出呢?