views:

75

answers:

1

Hey guys,

How is it possible to get one level up in my navigationcontroller? The docs didn't help me.

[self.navigationController popToRootViewControllerAnimated:YES];

pops to the root(as it says).

[self.navigationController dismissModalViewControllerAnimated:YES];

didn't work either.

Thanks for any help!

+2  A: 
[self.navigationController popViewControllerAnimated:YES];
Josh Lindsey
i thought i already tried this, but with getting an error.Thanks, now it works :)
rdesign