how is it possible to fetch the UUID from Peripheral side. Not the service UUIDs out of the advertising package.
Lets see it from the central side:
- (void)centralManager:(CBCentralManager *)central
didDiscoverPeripheral:(CBPeripheral *)peripheral
advertisementData:(NSDictionary *)advertisementData
RSSI:(NSNumber *)RSSI
What I need is the UUID out of peripheral.identifier
, not the ones included in the advertisementData
. I can fetch them from the central side, but I need to do this also from the peripheral side.