vote up 1 vote down star

I have an overlay that I want to slide in my cocoa-touch application. I have created the view controller for it and the corresponding nib. The nib just has a View with a text field in it.

I move to the view using:

[[self navigationController] pushViewController:[[[AddPlayerViewController alloc] initWithNibName:@"AddPlayerViewController" bundle:nil] autorelease] animated: YES];

This works fine and the view slides in. However, the back/cancel button doesn't render. I can click there and it goes back, but nothing is drawn.

flag

77% accept rate

1 Answer

vote up 2 vote down check

Just a thought, does the first view have a title? Try setting it if not...

link|flag
Doh! Worked, cheers. – ICR Feb 14 at 11:03

Your Answer

Get an OpenID
or

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