iOSiOS開發之退出功能(易錯)

來源:互聯網
上載者:User

標籤:

如果,我們有兩個控制器,第一個控制器是MainController,它是與Main.storyboard相關聯的。第二個控制器是myController。假設myController中有一個退出按鈕,點擊退出按鈕從myController返回到MainController,特別注意的是,下面寫法是錯誤的:

self.view.window.rootViewController = [[MainController alloc] init];

因為這樣去切換一個和storyboard檔案相關聯的控制器的話,他不會主動去載入storyboard檔案。正確的切換方法是:

UIStoryboard *storyboard =

[UIStoryboard storyboardWithName:@"Main" bundle:nil];

UIViewController *mainVc = [storyboard instantiateInitialViewController];

self.view.window.rootViewController = mainVc;

如果Main.storyboard中有多個Controller,我們可以給我們要載入的那個控制器設定一個Identifier,假設為"IDmain"。我們可以按照如下方式載入:

UIStoryboard *storyboard =

[UIStoryboard storyboardWithName:@"Main" bundle:nil];

UIViewController *mainVc =

[storyboard instantiateViewControllerWithIdentifier:@"IDmain"];

self.view.window.rootViewController = mainVc;

iOSiOS開發之退出功能(易錯)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.