kuler90 / RKTagsView

Highly customizable iOS tags view [input, edit, dynamic, tag, token, field, NSTokenField]
MIT License
451 stars 58 forks source link

How to combine with autocomplete? #3

Closed buiminhhuy closed 8 years ago

buiminhhuy commented 8 years ago

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.

kuler90 commented 8 years ago

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.

buiminhhuy commented 8 years ago

Thanks.