Question

I added UIWindow and its toolbar like:

self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
NSArray * arr = [NSArray arrayWithObjects:@"test1", @"test2", nil];
[[self.window rootViewController] setToolbarItems:arr animated:NO];

No toolbar showing up.

Is it doable? Thanks.

Was it helpful?

Solution

You should add your viewController (with a toolbar) to the window after the window's init.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top