public void Setup(UIViewController view, IList <string> suggestions)
 {
     _parentViewController  = view;
     DataFetcher            = new DefaultDataFetcher(suggestions);
     AutoCompleteViewSource = new DefaultDataSource();
     initialize();
 }
示例#2
0
 public void Setup(UIViewController view, IList <IMvxNotifyPropertyChanged> suggestions)
 {
     _parentViewController  = view;
     DataFetcher            = new DefaultDataFetcher <IMvxNotifyPropertyChanged>(suggestions);
     AutoCompleteViewSource = new DefaultDataSource();
     initialize();
 }