public override void LoadView ()
 {
     base.LoadView ();
     
     var sv = new SecondView { Title = "This is the title" };
     this.View = sv;
     this.View.BackgroundColor = UIColor.White;
 }
        public override void LoadView()
        {
            base.LoadView();

            var sv = new SecondView {
                Title = "This is the title"
            };

            this.View = sv;
            this.View.BackgroundColor = UIColor.White;
        }