In my project I have a characteristic that uses indications, so I am making my central program go and subscribe to them. On the peripheral side I have the delegate
- (void) peripheralManager:(CBPeripheralManager *)peripheral central:(CBCentral *)central didSubscribeToCharacteristic:(CBCharacteristic *)characteristic
it is called, however the CBCentral is (central CBCentral * 0x00000000). Therefore the updateValue onSubscribedCentrals is proving very difficult to make function.
My question is, has anyone else ran into this issue and if so what work around have you found that let you know about the desired Central?
--Deric