Programming/iOS - ObjC
UINavigationController - 뷰이동
Tez.Park
2010. 11. 30. 12:27
다른 뷰로 이동
[self.navigationController pushViewController:nextViewController animated: YES];
이전단계 뷰로 이동
[self.navigationController popViewControllerAnimated:YES];
한번에 최상위 뷰로 이동
[self.navigationController popToRootViewControllerAnimated:YES];
반응형