IOS 故事(shì)闆(Storyboards)
簡介
Storyboards在 iOS 5 中才有介紹,當我們用(yòng)Storyboards時(shí),部署目标應該是iOS5.0或更高(gāo)版本。
Storyboards 幫助我們了(le)解視(shì)覺流動的畫(huà)面,在界面爲
MainStoryboard.storyboard下(xià)創建所有應用(yòng)程序屏幕。
實例步驟
1. 創建一個single view application,創建應用(yòng)程序時(shí)選擇 storyboard 複選框。
2. 選擇MainStoryboard.storyboard,在這(zhè)裏你(nǐ)可以找到(dào)單一視(shì)圖控制器。添加一個視(shì)圖控制器,更新視(shì)圖控制器。
3.連接兩個視(shì)圖控制器。右鍵單擊"show modal(顯示模式)"按鈕,在左側視(shì)圖控制器将其拖動到(dào)右視(shì)視(shì)圖控制器中。
4.現(xiàn)在從(cóng)如下(xià)所示的三個顯示選項中選擇modal(模态)。
5.更新 ViewController.h 如下(xià)所示
#import
@interface ViewController : UIViewController
-(IBAction)done:(UIStoryboardSegue *)seque;
@end
6.更新 ViewController.m 如下(xià)所示
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad
{
[super viewDidLoad];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
-(IBAction)done:(UIStoryboardSegue *)seque{
[self.navigationController popViewControllerAnimated:YES];
}
@end
7.選擇"MainStoryboard.storyboard",并右鍵點擊"Exit "按鈕,在右側視(shì)圖控制器中選擇和(hé)連接後退按鈕
網站(zhàn)建設開(kāi)發|APP設計(jì)開(kāi)發|小(xiǎo)程序建設開(kāi)發