Sunday, 29 January 2012

Returning to Parent View-iPhone

Dismiss ModalViewController-View Based

-(IBAction)btnClicked:(id)sender{
[self dismissModalViewControllerAnimated:YES];
}
 

Pop ViewController-Navigation Based

 

[self.navigationController popViewControllerAnimated:YES]; 

Popto RootViewController-Navigation Based

 

 [self.navigationController popToRootViewControllerAnimated:YES];

 

No comments:

Post a Comment