iOS開發-UI (十)StoryBoard,-uistoryboard

來源:互聯網
上載者:User

iOS開發-UI (十)StoryBoard,-uistoryboard

今天這篇是UI的最後一篇了,後面再整理網路篇

知識點

1.UIStoryBoard介紹

2. UIStoryBoard的介面跳轉

3. UIStoryBoard介面之間的傳值

=========================      

UIStoryBoard介紹      

    UIStoryBoard是你可以用來定義使用者介面的一種新的方式,像xib。與xib不同的是它可以同時管理多個ViewController,而且可以在UIStoryBoard中配置ViewController 之間的跳轉關係。 如果主視窗只有一個view controller是作為UIStoryBoard的第一個介面,就需要勾選上 Initial Scene。UIStoryBoard將原有工程中的所有xib檔案整合在一起,用拖拽的方式建立起兩個viewController之間的跳轉關係,使得整個程式的UI跳轉邏輯清楚明了。使用UIStoryBoard後,介面相關的代碼編寫將更少。

 

1.如果主視窗只有一個view controller是作為story board的第一個介面,就需要勾選上 Initial Scene。

選中is initial view controller 當前的scene成為進入應用第一個scene

 

2.在UIStoryBoard當中可以直接在UITableView上定製cell

 

========================= 

UIStoryBoard的介面跳轉 

3.注意push和present的區別

  1).push對應pop,present對應dismiss;

  2).present只能逐級返回,push所有視圖由視圖棧控制,可以返回上一級,也可以返回到根vc,其他vc。

  3).present一般用於不同業務介面的切換,push一般用於同一業務不同介面之間的切換。

4.如何跳轉到未連線的控制器

1)+ (UIStoryboard *)storyboardWithName:(NSString *)name bundle:(NSBundle *)storyboardBundleOrNil;

作用:擷取某個對應的UIStoryboard對象

 

2)- (id)instantiateViewControllerWithIdentifier:(NSString *)identifier

作用:擷取該UIStoryboard的檔案中的某個帶有identifier標識的控制器 //跳轉到未串連的控制器

    

//取得Main.StoryBoardUIStoryboard *storyBoard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];//通過StoryBoardID獲得對應的控制器對象UIViewController *ctl = [storyBoard instantiateViewControllerWithIdentifier:@"ctlC"];//代碼跳轉[self.navigationController pushViewController:ctl animated:YES];

 

 

 

6.如何回到前一個介面

 

在上一級視圖控制器當中實現一個方法,要滿足一下格式

-(IBAction)+任意方法名+(UIStoryboardSegue *)+任意變數名

//UIStoryBoard的連線回跳方法-(IBAction)unwindingSegue:(UIStoryboardSegue *)segue{NSLog(@"sourceViewController = %@ destinationViewController = %@",segue.sourceViewController,segue.destinationViewController);//作用:在反向傳值當中會應用到

 

 

 

========================= 

 UIStoryBoard介面之間的傳值

 

1.正向傳值

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender

作用:即將切換情境時候調用

//當切換介面(push,present)的時候,就會調用以下方法-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{    //正向傳值    if ([segue.identifier isEqualToString:@"login"]) {        LoginViewController *ctl = segue.destinationViewController;        //賦值        ctl.userNameStr = self.userNameTF.text;        ctl.passwordStr = self.passWordTF.text;    }

 

 

 

2.反向傳值(傳統的block,協議代理,通知中樞,單例傳值依然奏效)

-(IBAction)unwind:(UIStoryboardSegue *)segue

作用:返回上一個情境時候調用

 

//UIStoryBoard的連線回跳方法//先實現回跳方法,才能連線-(IBAction)unwindingSegue:(UIStoryboardSegue *)segue{    //反向傳值(UIStoryBoard專用)    //判斷是否點擊的是註冊完成    if ([segue.identifier isEqualToString:@"finish"]) {        //嚴謹        if ([segue.sourceViewController isKindOfClass:[RegisterViewController class]]) {            RegisterViewController *ctl = segue.sourceViewController;        //重新整理UI            self.userNameTF.text = ctl.userNameTF.text;            self.passWordTF.text = ctl.passWordTF.text;//作用:在反向傳值當中會應用到        }    }

 

相關文章

聯繫我們

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