kuler90/RKTagsView

How to combine with autocomplete?

Closed this issue · 2 comments

I want to searchable on textfield of RKTagsView to show list suggestion, after selecting a item from list, the item will add to RKTagsView.
How to implement above scenario? Thanks for advance help.

Hi!
You can use delegate (it is free) or add action for UIControlEventEditingChanged on the textfield. After selecting an item from list you can use methods addTag or insertTag.

Thanks.