New to Telerik UI for Xamarin? Download free 30-day trial

AutoCompleteTextView for Xamarin.iOS: Suggest Modes

There are three suggesting modes in which TKAutoCompleteTextView operates:

  • TKAutoCompleteSuggestModeAppend - suggestions are shown in list view.

  • TKAutoCompleteSuggestModeSuggest - only one suggestion is shown as an instant completion to the typed text.

  • TKAutoCompleteSuggestModeSuggestAppend - combines the first two modes.

The default suggesting mode is TKAutoCompleteSuggestMode.Suggest. It can be changed through the SuggestMode property of the TKAutoCompleteTextView:

this.Autocomplete.SuggestMode = TKAutoCompleteSuggestMode.Suggest;
In this article