例如由A页面跳转到B页面,由B页面返回A页面
1.在A页面
BViewController *controller=[[BViewController alloc]init];
[self.navigationController pushViewController:controller animated:YES];
[controller release];
2.在B页面[self.navigationController popViewControllerAnimated:YES];