Go to very beginning of UINavigationController after going some pages deep
I want to go to the very beginning 开发者_JAVA百科of the UINavigationController
after going deep several pages. If I try the following code, it will only go back one view.
[self.navigationController popViewControllerAnimated:YES];
I want to do this action on a "cancel" button placed on the top right.
[self.navigationController popToRootViewControllerAnimated:YES];
精彩评论