码迷,mamicode.com
首页 > 其他好文 > 详细

XIB文件链接controller文件&&加载rootviewcontroller

时间:2014-08-07 12:44:39      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   strong   文件   amp   window   app   

1.定义好的xib文件rootView.xib,选中files·owners  在class中选择对应的viewController

2.如何在window中指定rootViewController

------在appdelegate.h中声明属性

 @property (strong,nonatomic)rootViewController* rvc;

------在appdelegate.m中的didFinishLauchingWithOptions:方法中加载rvc

self.rvc = [[rootViewController alloc]initWithNibName:@"rootView" bundle:nil]; //rootView是rootView.xib文件的名字

self.window.rootViewController = rvc;

//显示window

[self.window makeKeyAndVisible]; 
return YES;

XIB文件链接controller文件&&加载rootviewcontroller,布布扣,bubuko.com

XIB文件链接controller文件&&加载rootviewcontroller

标签:style   color   io   strong   文件   amp   window   app   

原文地址:http://www.cnblogs.com/AngryCooder/p/3896392.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!