Step 1
创建新项目
Step 2
选择“单一视图应用程序”-> 下一步
Step 3
设置 ProjectName 和其他设置 -> 下一步
Step 4
将项目保存在位置 -> 创建
Step 5
在左侧的导航器面板中选择项目
Step 6
从项目中“删除 Main.storyboard”文件
Step 7
“在项目中添加新的 .xib 文件”
Step 8
在右侧面板的“常规选项卡”中将主界面设置为您的 .xib 文件。
Step 9
didFinishLaunchingWithOptions
在方法中粘贴以下代码
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
self.viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];