Esempio n. 1
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            ViewController examplesController = new ViewController (null);
            UINavigationController navigationController = new UINavigationController (examplesController);
            navigationController.NavigationBar.Translucent = false;

            this.Window = new UIWindow (UIScreen.MainScreen.Bounds);
            this.Window.RootViewController = navigationController;
            this.Window.MakeKeyAndVisible ();

            return true;
        }
Esempio n. 2
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            ViewController examplesController = new ViewController ();
            UINavigationController navigationController = new UINavigationController (examplesController);
            navigationController.NavigationBar.Translucent = false;

            TKFeedbackController feedbackController = new TKFeedbackController ();
            feedbackController.DataSource = new TKPlatformFeedbackSource (apiKey, uID);
            feedbackController.ContentController = navigationController;

            this.Window = new UIWindow (UIScreen.MainScreen.Bounds);
            this.Window.RootViewController = feedbackController;
            this.Window.MakeKeyAndVisible ();
            return true;
        }
Esempio n. 3
0
 protected override void Dispose(bool disposing)
 {
     base.Dispose (disposing);
     this.owner = null;
 }
Esempio n. 4
0
 public TableViewDelegate(ViewController owner)
 {
     this.owner = owner;
 }
Esempio n. 5
0
 public TableViewDataSource(ViewController owner)
 {
     this.owner = owner;
 }