I am trying to get the write request sent from Central and no delegate is getting called for the same in Peripheral. If I unsubscribe characteristic from Central then didUnsubscribeFromCharacteristic gets called. I am not sure how will I get the request in Peripheral application.
Central code:
[peripheral writeValue:data forCharacteristic:characteristic type:CBCharacteristicWriteWithResponse];
Tried calling same method with type:CBCharacteristicWriteWithoutResponse, its not working as expected.
Any help will be appriciated.
Thanks in advance!