Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to setup a Getting started viewController. In the appDelegate I want to create a if condition that checks for a NSUserDefaults Like this:

public override bool FinishedLaunching (UIApplication application, NSDictionary launchOptions)
        {

            if (NSUserDefaults.StandardUserDefaults.StringForKey ("LaunchWatcher") != null) {



            } else {


            }


            return true;
        }

If LaunchWatcher is not null, appDelegate should push to NewTrackTraceViewController. If null then to TrackTraceViewController. How can I do this using C#? What would be the correct code to push to the viewcontroller?

Something like this:

if (NSUserDefaults.StandardUserDefaults.StringForKey ("LaunchWatcher") != null) {

this.PresentViewController(NewTrackTraceViewController, animated, null);

            } else {

this.PresentViewController(TrackTraceViewController, animated, null);
            }
share|improve this question

2 Answers

up vote 0 down vote accepted
+50

Take a look here:

Monotouch navigate from splash screen

Its basicly what you have to do. Just use the topviewcontroller.

share|improve this answer
This works like a charm! cheers man. – Florian Schaal Mar 20 at 11:25

You have to construct view controller,then navigation controller, and assign it to window.

share|improve this answer
But is it possible to have 2 rootviewcontrollers? And then choose either one 1 or 2? – Florian Schaal Mar 19 at 9:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.