Autocomplete in IOS Xamarin

I am making an IOS app in Xamarin IOS on MAC. There is a text box in the toolbar, but there is no autocomplete box in the Android toolbar. So I can make a textbox in an autocomplete box in IOS Xamarin and connect it to JSON or an array. Because there is no example or tutorial in the Xamarin tutorial for autocomplete in ios.

+3


source to share


3 answers


You can use iOS texfeild with a tableview to provide an autocomplete option. You can check out this blog post http://appliedcodelog.com/2015/09/xamarinios-location-autocomplete-by.html using the autocomplete option by binding JSON data.



+1


source


Stackoverflow is really responsible for technical questions about things you've tried. Asking if something exists is the best challenge for google, in which on the first page of results I found a mono-threaded demo of autocomplete on github and this example for autocomplete in xamarin.forms .



0


source


New updated api for autocomplete in Xamarin IOS https://github.com/EddyBorja/MLPAutoCompleteTextField

0


source







All Articles