UITextField with the lookup

Posted by leon on Stack Overflow See other posts from Stack Overflow or by leon
Published on 2010-04-04T14:29:45Z Indexed on 2010/04/04 14:33 UTC
Read the original article Hit count: 368

Filed under:
|

Hello, I would like to achive the same functinoanlity in the UUTextField control as Google search web site (which uses Ajax for this): as user start typing, list of suggestion searches is shown. Then more letteres you type, suggestion list changes.

So imaging I have array of words:

  1. Apple
  2. Abc
  3. Aman

As user types A, all thress suggesions are shown, if user type one more letter p, then Apple is suggested.

How would I do something like this? Mail type of applicatins do it, when receipent name is typed in the To: edit control

I guess I can use UITableView with the search, is it correct approach?

© Stack Overflow or respective owner

Related posts about uitextfield

Related posts about iphone-sdk