Programming/iOS - ObjC
UINavigationController - 이전 뷰로 이동
Tez.Park
2011. 1. 14. 09:51
<NavigationController 에서 앞쪽 뷰로 이동>
// 뒤로
[self.navigationController popViewControllerAnimated:YES];
// 처음으로
[self.navigationController popToRootViewControllerAnimated:YES];
반응형