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; }
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; }
protected override void Dispose(bool disposing) { base.Dispose (disposing); this.owner = null; }
public TableViewDelegate(ViewController owner) { this.owner = owner; }
public TableViewDataSource(ViewController owner) { this.owner = owner; }