Hi Folks,
when I use this code I am able to switch from one view to the other:
Code:
ShowGameController *controller = [[ShowGameController alloc] initWithNibName:@"ShowGameController" bundle:[NSBundle mainBundle]];
[self.navigationController pushViewController:controller animated:YES];
[controller release];
controller = nil;
}
When I use an (IBAction) instead of the normal "Back" Button, then the view is not flipping to the left, but to the right...
How can I switch the views that it is switching to the left?
Thanks for your help,
Stefan