public TopLevelViewControllerBase() : base() { ExceptionUtility.Try(() => { SubscribeConnectionEvents(); this.TabBar = new TabBarView(this); this.ConnectionBar = new ConnectionStateDebugView(this); this.ReconBar = new ReconnectingView(this); }); }
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; }); }