<NavigationController 에서 앞쪽 뷰로 이동>


그리고 네비게이션 컨트롤러에서 뒤로 또는 맨 처음으로 되돌아 가는 방법은

// 뒤로
[self.navigationController popViewControllerAnimated:YES];

// 처음으로 
[self.navigationController popToRootViewControllerAnimated:YES];
반응형