Exemplo n.º 1
0
 public TopLevelViewControllerBase() : base()
 {
     ExceptionUtility.Try(() =>
     {
         SubscribeConnectionEvents();
         this.TabBar        = new TabBarView(this);
         this.ConnectionBar = new ConnectionStateDebugView(this);
         this.ReconBar      = new ReconnectingView(this);
     });
 }
Exemplo n.º 2
0
 public TopLevelViewControllerBase(string nibName, Foundation.NSBundle bundle, AlertViewModel alert) : base(nibName, null)
 {
     ExceptionUtility.Try(() =>
     {
         SubscribeConnectionEvents();
         this.TabBar        = new TabBarView(this);
         this.ConnectionBar = new ConnectionStateDebugView(this);
         this.ReconBar      = new ReconnectingView(this);
         AlertID            = alert;
     });
 }