I used MainWindow.xib as my home page.
From that i add navigationcontroller.I want to go back to the mainwindow from the navigation controller.
I used the below code in the rootviewcontroller.m.But it did not work.
From that i add navigationcontroller.I want to go back to the mainwindow from the navigation controller.
I used the below code in the rootviewcontroller.m.But it did not work.
Code:
- (IBAction)back:(id)sender {
JsonappAppDelegate *Delegate1 = [[UIApplication sharedApplication] delegate];
[Delegate1.navigationController popViewControllerAnimated:YES];
}