CIOAutocompleteResult

@objc
public class CIOAutocompleteResult : NSObject

Defines an autocomplete item in the list. Since you can search for a term in a group, this class holds both the result and the group to search in.

  • Result returned for the query

    Declaration

    Swift

    public let result: CIOResult
  • Group (or category) the result belongs to

    Declaration

    Swift

    public let group: CIOGroup?
  • Create a autocomplete result

    Declaration

    Swift

    public init(result: CIOResult, group: CIOGroup? = nil)

    Parameters

    result

    Result info

    group

    Group info