public void Setup(UIViewController view, IDataFetcher fetcher)
 {
     _parentViewController  = view;
     DataFetcher            = fetcher;
     AutoCompleteViewSource = new DefaultDataSource();
     initialize();
 }
Esempio n. 2
0
 public void Setup(UIViewController view, IDataFetcher <IMvxNotifyPropertyChanged> fetcher)
 {
     _parentViewController  = view;
     DataFetcher            = fetcher;
     AutoCompleteViewSource = new DefaultDataSource();
     initialize();
 }
 public void Setup(UIViewController view, IList <string> suggestions)
 {
     _parentViewController  = view;
     DataFetcher            = new DefaultDataFetcher(suggestions);
     AutoCompleteViewSource = new DefaultDataSource();
     initialize();
 }
Esempio n. 4
0
 public void Setup(UIViewController view, IList <IMvxNotifyPropertyChanged> suggestions)
 {
     _parentViewController  = view;
     DataFetcher            = new DefaultDataFetcher <IMvxNotifyPropertyChanged>(suggestions);
     AutoCompleteViewSource = new DefaultDataSource();
     initialize();
 }