resolveChannel(for:with:)
Resolves the channel number for the radio station.
Declaration
optional func resolveChannel(for intent: INSetRadioStationIntent, with completion: @escaping @Sendable (INStringResolutionResult) -> Void)optional func resolveChannel(for intent: INSetRadioStationIntent) async -> INStringResolutionResultParameters
- 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 your response. 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 channel number of the station. If the station doesn’t have an associated channel number, perhaps because it’s an FM radio station, you can return a resolution that the value isn’t required.
Discussion
Implement this method to resolve the channel for the radio station. Use this method to set the radio to the station associated with the resolved channel.