彈出導航控制器

到以前的檢視控制器

要彈回上一頁,你可以執行以下操作:

迅速

navigationController?.popViewControllerAnimated(true)

Objective-C 的

[self.navigationController popViewControllerAnimated:YES];

到根檢視控制器

要彈出到導航堆疊的根目錄,你可以執行以下操作:

迅速

navigationController?.popToRootViewControllerAnimated(true)

目標 C.

[self.navigationController popToRootViewControllerAnimated:YES];