我是個初學者,只有簡單的了解MVC和一些簡單的api,我想知道我做一個登錄界面,怎麼讓我點擊登錄之後進入下一個應用界面呢?大牛給詳細的解答好嗎,謝謝大神。
從A頁面跳到B頁面
1.ViewControllerB *B=[[ViewControllerB alloc] init];
[self.navigationController pushViewController: B animated:true];
2.ViewControllerB *B=[[ViewControllerB alloc] init];
[self presentModalViewController:B animated:YES];
3.直接在StoryBoard上操作。
首先,按住control,按照紅色箭頭(A->B)的起始位置拖動。
其次,點擊黑色箭頭指向的segue;
最後,在黑框中自定義 identifier ,假如identifier 為 haha
一句代碼就可以實現。
[self performSegueWithIdentifier: haha sender: self ];
不明白再聯系我。