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.

In my app delegate, I have:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    // Override point for customization after application launch.
    self.viewController = [[CGMContainerViewController alloc] init];
    self.window.rootViewController = self.viewController;
    self.window.backgroundColor = [UIColor whiteColor];
    [self.window makeKeyAndVisible];
    return YES;
}

I have an unmodified CGMContainerViewController.h/m and a modified CGMContainerViewController.xib (added a button). The view is linked to the File Owner.

Why is the view from the XIB not showing?

EDIT: Is it because I'm trying to load a view with a status bar into the window?

share|improve this question

3 Answers

From the looks of your code, you aren't loading any XIB files. You need to call initWithNibName:

self.viewController = [[CGMContainerViewController alloc] initWithNibName:
                                       @"CGMContainerViewController" bundle: nil];
share|improve this answer
1  
That doesn't do anything either. I thought that init tries to load the XIB with the same name anyways. – fumoboy007 May 2 '12 at 4:52
This is not required and I often prefer to leave it off or move the decision inside the viewController itself. It's cool to note that [[CGMContainerViewController alloc] init] will automatically load a nib called CGMContainerView, which I think is more semantically correct that giving it the same name as the viewController – Paul.s May 2 '12 at 22:46

Make sure that your File's Owner in the XIB is set to CGMContainerViewController

enter image description here

share|improve this answer
I think it is. I'll check later. – fumoboy007 May 2 '12 at 12:37

Okay. I think it was because for a UINavigationController, you have to set the rootViewController and all the layers. I just changed it to a UIViewController because I didn't really need the navigation, just the navigation bar.

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.