예제 #1
0
        public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
        {
            // create a new window instance based on the screen size
            Window = new UIWindow(UIScreen.MainScreen.Bounds);

            // If you have defined a root view controller, set it here:
            // Window.RootViewController = myViewController;
            var demo = new TableViewCellDemo2();

            Window.RootViewController = demo;
            // make the window visible
            Window.MakeKeyAndVisible();

            return(true);
        }
예제 #2
0
 public Source(TableViewCellDemo2 owner)
 {
     _owner = owner;
 }