1 controller切換
AboutViewController *aboutViewController = [[AboutViewController alloc]init];
[self.navigationController pushViewController:aboutViewController animated:YES]; //新視圖壓入到棧中
[AboutViewController release];
AboutViewController 返回按鈕:
[self.navigationController popViewControllerAnimated:YES];//彈出后返回到原視圖
2 從上向上滑出
NewProfileViewController *newProfileController =[[ewProfileViewController alloc]init];
[self.navigationController presentModalViewController:newProfileController animated:YES];
[newProfileController release];
NewProfileViewController取消按鈕:
[self dismissModalViewControllerAnimated:YES];
3 彈出窗口
4 窗口翻轉