Contents

resolveSearchTerms(for:with:)

Resolves any search terms provided by the user.

Declaration

optional func resolveSearchTerms(for intent: INSearchForPhotosIntent, with completion: @escaping  @Sendable ([INStringResolutionResult]) -> Void)
optional func resolveSearchTerms(for intent: INSearchForPhotosIntent) async -> [INStringResolutionResult]

Parameters

  • 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 handler block to execute with the resolution. You must execute this handler at some point during your implementation of this method. This handler 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 terms that you intend to use during the search.

Discussion

Implement this method to resolve any search terms provided by the user.

See Also

Resolving the Intent Parameters