xcode6之后没有能够创建XIB的工程模版了,以下是创建xib工程方法
1.创建singleView工程
2.删除ViewController.h、ViewController.m和Main.storyboard文件
3.将工程文件中Main Interface选项的默认Main删除
4.创建RootViewController.h、RootViewController.m和RootViewController.xib文件
5.在Appdelegate.m文件中函数didFinishLaunchingWithOptions下添加以下代码
self.window = [[UIWindowalloc]initWithFrame:[[UIScreenmainScreen]bounds]];
self.window.rootViewController = [[RootViewControlleralloc]initWithNibName:@"RootViewController"bundle:nil];
[self.windowmakeKeyAndVisible];
6.完成