views:

11

answers:

1

Hi All

i need a help

my app is Tab & navigation based.

in the navigation model i have a section to get input from user and store it to SQLLite thats working fine when i clicking the "save" button

prob here is once its saved i need to navigate user to the preveios level of the navigation controller (same operation like Navigation Back button).

Any ideas?

Thanks in advance

+1  A: 

Try calling popViewControllerAnimated:

[self.navigationController popViewControllerAnimated:YES];
DyingCactus
Thanks DyingCactus.. you saved my day.. its working fine..
kumaravel

related questions