This helped me (via Xamarin):
public override bool ShouldPerformSegue (string segueIdentifier, NSObject sender) { if (segueIdentifier != ReportSettingsSegue) return base.ShouldPerformSegue (segueIdentifier, sender); bool isOk = ProcessLogin (); var svc = (ReportSplitViewController)Storyboard.InstantiateViewController ("ReportSplitViewController"); View.Window.RootViewController = svc; return isOk; }
Segue to execute after pressing the "enter" button on the first screen of the application.
You should also set the identifier of the split controller identifier (storyboard identifier) ββin the identification inspector in the storyboard (for me, this is ReportSplitViewController)
source share