FUISearchToSelectViewDelegate

public protocol FUISearchToSelectViewDelegate : AnyObject

The delegate of FUISearchToSelectView manages uuids of cells and corresponding tag titles.

  • Ask the delegate for the uuid of a cell at particular location.

    Declaration

    Swift

    func searchToSelectView(_ searchToSelectView: FUISearchToSelectView, uuidForItemAt indexPath: IndexPath) -> String?

    Parameters

    searchToSelectView

    The searchToSelectView requesting the uuid.

    indexPath

    An index path locating a row in tableView.

    Return Value

    The uuid for that cell at particular location.

  • Ask the delegate for the tag title of a cell with a particular uuid.

    Declaration

    Swift

    func searchToSelectView(_ searchToSelectView: FUISearchToSelectView, tagTitleFor itemUUID: String) -> String?

    Parameters

    searchToSelectView

    The searchToSelectView requesting the tag title.

    itemUUID

    The uuid of a cell.

    Return Value

    The tag title for that cell with particular uuid.