Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem in ViewController. And I'm using xcode 4.3.3, trying to implement iPhone 5.1 apps. Every time I write some code about ViewController, it reports the same error: use of undeclared identifier "viewController". And if I declare it with type of UIViewController, it has runtime error.

Some codes are like this:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{   
    self.window.rootViewController = [[UINavigationController alloc]initWithRootViewController:viewController];
    // Override point for customization after application launch.
    return YES;
}

It is in AppDelegate.m file.

Is there any difference in using viewController in ios 4 and 5?

share|improve this question

1 Answer

up vote 1 down vote accepted

You actually don't need to need to modify the AppDelegate for this.

Leave it blank:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.
    return YES;
}

And then in your storyboard file select the View Controller you want to be the first and make sure "Is Initial View Controller" is selected.

share|improve this answer

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.