Reputation: 407
The title explains it all. All I want to know is that if a device is being used as a peripheral and a central and gets near another device being used as a peripheral and a central, would the peripheral manager and central manager on each device see the same "identifier" property on the CBPeripheral and the CBCentral objects corresponding to the to the other device in the area?
Upvotes: 3
Views: 1279
Reputation: 16790
There's no official statement but experience shows that a remote device is identified by a single UUID. That is, the CBPeripheral and the CBCentral corresponding to the same remote device will have the same UUID. However, these values will be different on each host. E.g. an iPhone will never have the same UUID on different iOS devices that discover it.
Upvotes: 3