我很困惑。
我使用CLBeaconRegion创建了一个Beacon,并将其与CBPeripheralManager一起宣传:
- (void)startTransmitting:(NSUUID*)uuid major:(NSInteger)major minor:(NSInteger)minor identifier:(NSString*)identifier {
self.beaconRegion = [[CLBeaconRegion alloc] initWithProximityUUID:uuid
major:major
minor:minor
identifier:identifier];
self.beaconPeripheralData = [self.beaconRegion peripheralDataWithMeasuredPower:nil];
self.peripheralManager = [[CBPeripheralManager alloc] initWithDelegate:self
queue:nil
options:nil];
}
-(void)peripheralManagerDidUpdateState:(CBPeripheralManager *)peripheral {
if (peripheral.state == CBPeripheralManagerStatePoweredOn) {
NSLog(@"Powered On");
[self.peripheralManager startAdvertising:self.beaconPeripheralData];
} else if (peripheral.state == CBPeripheralManagerStatePoweredOff) {
NSLog(@"Powered Off");
[self.peripheralManager stopAdvertising];
}
}
我能够通过CBCentralManager接收iBeacon:
self.centralManager = [[CBCentralManager alloc] initWithDelegate:self queue:nil];
[self.centralManager scanForPeripheralsWithServices:nil options:nil];
- (void)centralManager:(CBCentralManager *)central didDiscoverPeripheral:(CBPeripheral *)peripheral advertisementData:(NSDictionary *)advertisementData RSSI:(NSNumber *)RSSI {
[self.peripherals addObject:peripheral];
NSLog(@"New Peripheral found and added... %@", peripheral);
}
这基本上有效。但传输和收到的UUID是不同的 - 在我看来应该是相同的。
- >我做错了什么/理解错了?
答案 0 :(得分:1)
问题是您使用CBCentralManager
阅读的UUID与iBeacon的ProximityUUID无关。
尽管在两个领域都使用了术语UUID,但它们完全不同。您可以使用CBCentralManager
看到的字段只是iOS生成的特定于会话的标识符。如果您以后使用相同的API来发现同一设备,则它将是不同的值。
不幸的是,无法使用CoreBluetooth
API来读取iBeacon标识符。有关原因的详细信息,请参阅this blog post。