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
searchToSelectViewThe searchToSelectView requesting the uuid.
indexPathAn 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
searchToSelectViewThe searchToSelectView requesting the tag title.
itemUUIDThe uuid of a cell.
Return Value
The tag title for that cell with particular uuid.