####1. 新建项目
####2. 去掉Stroyboard引导
####3. 补充xib文件
####4. 配置xib文件
####5. AppDelegate 补充代码
#import "ViewController.h"
@property (strong, nonatomic) ViewController *viewController;
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
self.viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
self.window.rootViewController = self.viewController;
[self.window makeKeyAndVisible];