Reputation: 259
I'm working on a app. it has texfields.What I want is when user type something in the textfield("as an exmple think user types letter 'y'") then below the text field , should show realtime all available names in start from 'y' as dropdown list. then user should be able to select one from it.then the selected items should display in the textfield.how can we do this.
Upvotes: 3
Views: 6281
Reputation: 11
Here you have another library that makes exactly what you need: https://github.com/apasccon/SearchTextField
Upvotes: 1
Reputation: 1379
Here is the basic idea for auto complete textfield utilising table view.
Upvotes: 1
Reputation: 3753
This library should help (both Objc and Swift). As you type it filters results and displays a tableview of suitable results underneath.
https://github.com/gaurvw/MPGTextField
(sorry i couldn't add this as a comment)
Upvotes: 0