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 am new to iPhone,

I want to change my Rootviewcontroller to my new class and make it to navigation controller.

Here is my code snippet,

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    


    UINavigationController *navigationController=[[UINavigationController alloc] initWithRootViewController:detailViewController];
    [self.window addSubview:navigationController.view];

    [self.window makeKeyAndVisible];


    return YES;
}

I am getting SIGABRT says 'adding a root view controller <NewClass: 0x6a8dd50> as a child of view controller:

share|improve this question

5 Answers

up vote 3 down vote accepted

Whenever u want to set:

DetailViewController *detailViewController = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:nil];
UINavigationController *navigationController=[[UINavigationController alloc] initWithRootViewController:detailViewController];
self.window.rootViewController =nil;
self.window.rootViewController = navigationController;
[self.window makeKeyAndVisible];
return YES;
share|improve this answer
same problem occurring even after writing this.. – Krunal Sep 3 '12 at 7:28
check edited answer – Prince Sep 3 '12 at 8:22
Thanks for the Answer saved my last 4 hours of work – Space Dust Sep 14 '12 at 18:16

Instead of:

[self.window addSubview:navigationController.view];

make navigationController the rootViewController of window:

 self.window.rootViewController = navigationController;

Also, is detailViewController of type UINavigationController? You cannot set UINavigationController as root to another UINavigationController object.

share|improve this answer
same problem occurring even after writing this.. – Krunal Sep 3 '12 at 7:30
Is detailViewController of type UINavigationController? You cannot set UINavigationController as root to another UINavigationController object – tipycalFlow Sep 3 '12 at 7:49

Just add this line,

RootViewController *defaultViewController=[[RootViewController alloc]initWithNibName:@"NAME_OF_XIB" bundle:nil];

before UINavigationController's initialization,

RootViewController *defaultViewController=[[RootViewController alloc]initWithNibName:@"NAME_OF_XIB" bundle:nil];
UINavigationController *navigationController=[[UINavigationController alloc] initWithRootViewController:detailViewController];
[self.window addSubview:navigationController.view];

[self.window makeKeyAndVisible];
return YES;
share|improve this answer
let me know if that works – channi Sep 3 '12 at 7:59

This post may help you Take a look

share|improve this answer

Change your RootViewController to NavigationController..

UINavigationController *navigationController=[[UINavigationController alloc] initWithRootViewController:self.detailViewController];
share|improve this answer
must work. guarantee – user2318226 May 3 at 11:53

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.