discoverCharacteristics(_:for:)
Discovers the specified characteristics of a service.
Declaration
func discoverCharacteristics(_ characteristicUUIDs: [CBUUID]?, for service: CBService)Parameters
Discussion
You can provide an array of CBUUID objects—representing characteristic UUIDs— in the characteristicUUIDs parameter. When you do, the peripheral returns only the characteristics of the service that match the provided UUIDs. If the characteristicUUIDs parameter is nil, this method returns all characteristics of the service.
When the peripheral discovers one or more characteristics of the specified service, it calls the peripheral(_:didDiscoverCharacteristicsFor:error:) method of its delegate object. After the peripheral discovers the service’s characteristics, you can access them through the service’s characteristics property.