I am starting to work with text fields
, and I want to implement a functionality with a custom autocomplete.
In a lot of blogs and answer, implement it with UITables
to show the autocomplete, but I do not need this, I need to create a autocomplete like a iPhone function, where show a pop out with the filter but only with my array of words.
For example.
my_array = @{"apple","banana","pear","orange","berry"}
When I type "app" the text field only need to show me "apple" but not complete the text in the text field
, should show the pop up with the autocomplete.
Something like this but only with my array.