Wednesday, January 20, 2010

Navigating from 1st page to 2nd page

Code if we have NIB file

SecondPageViewController *secPgViewCtrl = [[SecondPageViewController alloc] initWithNibName:@"SecondPageView" bundle:[NSBundle mainBundle]];
[self.navigationController pushViewController:secPgViewCtrl animated:YES];
[secPgViewCtrl release];

No comments:

Post a Comment