public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            window = new UIWindow (UIScreen.MainScreen.Bounds);

              viewController = new AutoCompleteDemoViewController ();
              window.RootViewController = viewController;
              window.MakeKeyAndVisible ();

              return true;
        }
 public AutoCompleteTableSource(string[] suggestions, AutoCompleteDemoViewController controllerContext)
 {
     this.suggestions = suggestions;
       this.controllerContext = controllerContext;
 }