iOS導覽列UINavigationController的使用和頁面之間的切換的實現方法,

來源:互聯網
上載者:User

iOS導覽列UINavigationController的使用和頁面之間的切換的實現方法,
導覽列的使用

NavigationController管理著螢幕頂部的那個Bar和不同UIViewcontroller之間的切換。

可直接拖拽Navigation Controller至storyboard產生一個導覽列。這個導覽列可以顯示返回按鈕,當前頁面名稱等。

在設定ViewController的標題後,導覽列就會顯示當前頁面的標題。如

- (void)viewDidLoad {    [super viewDidLoad];    self.title = @"Page1";}

將此ViewController控制的頁面標題設定為”Page1”。

頁面切換方法一

可以使用拖拽按鈕的方法產生頁面切換的程式,只要在storyboard中將一個按鈕從一個頁面右鍵拖到另一個頁面,可以選擇幾種切換方式: show,show detail, present modally, present as popover 和 Custom。如果要在導覽列產生返回按鈕,就需要選擇show模式。

方法二

可以使用程式碼完成頁面切換,首先要給將轉到的那個目標版面設定一個Storyboard ID,如我設成page2ViewController,然後設定按鈕事件,我偷懶直接把按鈕郵件拖拽到代碼區產生個函數殼,命名為GoToPage2,我是在第一頁設定跳轉到第二頁的按鈕,需要在ViewController.m中import第二個頁面的UIViewController變數的標頭檔,然後在按鈕事件函數中增加兩行代碼,函數如下

- (IBAction)GoToPage2:(id)sender {    Page2ViewController *page2 = [self.storyboard instantiateViewControllerWithIdentifier:@"page2ViewController"]; //設定跳轉頁面    [self.navigationController pushViewController:page2 animated:YES]; //設定跳轉方式}

這個方法是可以跳轉後在導覽列產生返回按鈕的。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.