Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to know what is the different of them. when I can call

[self dismissViewControllerAnimated:YES completion:nil];

and when I should call

[self.navigationController popViewControllerAnimated:YES];

according document of apple: dismissViewControllerAnimated means "Dismisses the view controller that was presented by the receiver." But I always fail to dismiss view controller by this method.

share|improve this question

2 Answers

up vote 5 down vote accepted

your selected application is navigation based application means

[self.navigationController popViewControllerAnimated:YES];

your selected application is other than the navigation based application means

[self dismissViewControllerAnimated:YES completion:nil];
share|improve this answer
so does it means: I should not use dismissViewControllerAnimated in a navigation based application ? I think it is the reason why I always fail to dismissViewControllerAnimated, thank you ! – kevin young Jun 18 '12 at 9:34
ok. No problem my friend.. – Senthilkumar Jun 18 '12 at 9:37
am happy this helped you.. how about accepting it as the answer.. – Senthilkumar Jun 18 '12 at 9:42
when i have 15 reputation, I will go back this page and accept it. Now I have just 5 reputation. – kevin young Jun 18 '12 at 10:07

-dismissViewControllerAnimated:completion: method is used to dismiss an UIViewController, which was presented by the method: -presentViewController:animated:completion:.

-popViewControllerAnimated: method of UINavigationController is used to pop a controller shown by -pushViewController:animated method of UINavigationController.

In the first case the view controller's view shows as a modal controller (usually from bottom to top), and the second case you are pushing a view controller in the navigation stack of UINavigationController.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.