步驟一:手動(dòng)初始化storyboard.
公司主營(yíng)業(yè)務(wù):網(wǎng)站設(shè)計(jì)制作、網(wǎng)站建設(shè)、移動(dòng)網(wǎng)站開(kāi)發(fā)等業(yè)務(wù)。幫助企業(yè)客戶(hù)真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。創(chuàng)新互聯(lián)公司是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開(kāi)放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶(hù)帶來(lái)驚喜。創(chuàng)新互聯(lián)公司推出岱岳免費(fèi)做網(wǎng)站回饋大家。
首先刪除系統(tǒng)自動(dòng)創(chuàng)建的ViewController.h, ViewController.m 和 main.storyboard這三個(gè)文件。
2. 點(diǎn)擊項(xiàng)目——>General——>Deployment Info,在Main Interface選項(xiàng)中將main刪除。
3. 新建一個(gè)Storyboard文件,拖一個(gè)控制器,在拖一個(gè)按鈕。點(diǎn)擊storyboard上方的導(dǎo)航條,在右側(cè)“屬性”欄下view Controller復(fù)選框中Title下方將“Is Initial View Controller”勾選上。
4. 在AppDelegate.m文件中的didFinishLaunchingWithOptions方法中填寫(xiě)下面代碼:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// 1. Create a window
self.window = [[UIWindowalloc]initWithFrame:[UIScreenmainScreen].bounds];
// 2. Create Controller(A StoryBoard)
UIStoryboard *story = [UIStoryboardstoryboardWithName:@"Storyboard"bundle:nil];
// 2.1 Instantiate Controller (With Sweet(jian tou))
UIViewController *vc = [storyinstantiateInitialViewController];
// 3. Set the window Root Controller
self.window.rootViewController = vc;
// 4. Put the window as the Main Window and visible
[self.windowmakeKeyAndVisible];
returnYES;
}
步驟二:通過(guò)標(biāo)記初始化storyboard。
首先刪除系統(tǒng)自動(dòng)創(chuàng)建的ViewController.h, ViewController.m 和 main.storyboard這三個(gè)文件。
2. 點(diǎn)擊項(xiàng)目——>General——>Deployment Info,在Main Interface選項(xiàng)中將main刪除。
3. 新建一個(gè)Storyboard文件,拖一個(gè)控制器,在拖一個(gè)按鈕。點(diǎn)擊storyboard上方的導(dǎo)航條,在右側(cè)“屬性”欄左側(cè)選項(xiàng)中identity選項(xiàng)下storyboard ID里填寫(xiě)“Vstar”,之后點(diǎn)擊回車(chē)鍵。
4. 在AppDelegate.m文件中的didFinishLaunchingWithOptions方法中填寫(xiě)下面代碼:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// 1. Create a window
self.window = [[UIWindowalloc]initWithFrame:[UIScreenmainScreen].bounds];
// 2. Create Controller(A StoryBoard)
UIStoryboard *story = [UIStoryboardstoryboardWithName:@"Storyboard"bundle:nil];
// 2.1 Instantiate Controller (With Sweet(jian tou))
UIViewController *vc = [storyinstantiateViewControllerWithIdentifier:@"Vstar"];
// 3. Set the window Root Controller
self.window.rootViewController = vc;
// 4. Put the window as the Main Window and visible
[self.windowmakeKeyAndVisible];
returnYES;
}
當(dāng)前文章:用Storyboard實(shí)例化控制器:
路徑分享:http://jinyejixie.com/article30/ijjcso.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供營(yíng)銷(xiāo)型網(wǎng)站建設(shè)、定制網(wǎng)站、建站公司、網(wǎng)站策劃、網(wǎng)站制作、品牌網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容