使用OC编写iOS程序时,如果选择不用Storyboard来编写UI的话,则需要在AppDelegate中指定程序的入口页面。
先在AppDelegate.m的头部引入需要的View Controller
#import "ViewController.h"
然后在didFinishLaunchingWithOptions函数中加入
self.window = UIWindow.new;
[self.window makeKeyAndVisible];
self.window.rootViewController = [[UINavigationController alloc] initWithRootViewController:ViewController.new];