peripheral(_:didDiscoverCharacteristicsFor:error:)
Tells the delegate that the peripheral found characteristics for a service.
Declaration
optional func peripheral(_ peripheral: CBPeripheral, didDiscoverCharacteristicsFor service: CBService, error: (any Error)?)Parameters
- peripheral:
The peripheral providing this information.
- service:
The service to which the characteristics belong.
- error:
The reason the call failed, or
nilif no error occurred.
Discussion
Core Bluetooth invokes this method when your app calls the discoverCharacteristics(_:for:) method. If the peripheral successfully discovers the characteristics of the specified service, you can access them through the service’s characteristics property. If successful, the error parameter is nil. If unsuccessful, the error parameter returns the cause of the failure.