你好,歡迎來到IOS教程網

 Ios教程網 >> IOS使用技巧 >> IOS技巧綜合 >> 使用Storyboard進行界面之間的跳轉

使用Storyboard進行界面之間的跳轉

編輯:IOS技巧綜合
[摘要]本文是對使用Storyboard進行界面之間的跳轉的講解,對學習IOS蘋果軟件開發有所幫助,與大家分享。

我們可以使用以下代碼進行頁面之間的跳轉,你可以在其中加上邏輯判斷,這是在Storyboard上直接拖線上不可能完成的任務。

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"yourStroyboardName" bundle:nil];
UIViewController *viewController = [storyboard instantiateViewControllerWithIdentifier:@"yourStoryboardId"];
[self.navigationController pushViewController:viewController animated:YES];

使用以下代碼可以直接獲取Storyboard運行時馬上運行的視圖控制器

UIViewController *viewController = [storyboard instantiateInitialViewController];
  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved