resolveCarName(for:with:)
Resolves the name of the user’s car.
Declaration
optional func resolveCarName(for intent: INActivateCarSignalIntent, with completion: @escaping @Sendable (INSpeakableStringResolutionResult) -> Void)optional func resolveCarName(for intent: INActivateCarSignalIntent) async -> INSpeakableStringResolutionResultParameters
- intent:
The intent object containing details about the user’s request. Use this object to get the initial information, if any, provided by the user.
- completion:
The block to execute with the resolution. You must execute this block at some point during your implementation of this method. This block has no return value and takes the following parameter:
- resolutionResult
The object containing the details of your proposed resolution. For successful resolutions, create a resolution object with the name of the user’s car.
Discussion
Implement this method to resolve the car’s name. If the app has access to more than one car, use the intent’s carName property to identify the correct car. If the app has access to only a single car, you can call the completion block with a notRequired() resolution for Swift and resolutionResultNotRequired for Objective-C, to indicate that the car name is not necessary.