Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom list of auto complete options in ios using monotouch

I want to be able to supply my own list of available auto correct / auto complete options for a text input in an ios app created in monotouch.

The list of words is updated via a web service. Examples of this type of functionality can be seen in the Ebay app when completing a search.

What would be the best way to achieve this?

like image 719
Lucas Avatar asked Aug 14 '12 01:08

Lucas


1 Answers

You should be able to adapt this Objective-C solution: http://www.raywenderlich.com/336/how-to-auto-complete-with-custom-values

like image 194
infl3x Avatar answered Nov 01 '22 17:11

infl3x