I am new to iOS Application development, please help me how can I go from one view controller to another view controller on button click?
view controller
Try this:
nextViewController *obj =[[nextViewController alloc]initWithNibName:@"nextViewController" bundle:nil]; [self.navigationController pushViewController:obj animated:YES]; [obj release];