我开始学习objective-c和ios编程。我有两个视图控制器,分别名为MainViewController和GameViewController,我的项目中还有两个xib文件。我将xib文件与ViewController的连接起来。总而言之,这是我的文件:
视图控制器,
AppDelegate.h
AppDelegate.m
MainViewController.h
MainViewController.m
GameViewController.h
GameViewController.m
和xib,
Main.xib
Game.xib
我在项目选项中选择 Main.xib 作为主界面。我试图理解下面的问题,当我首先运行这个应用程序时 main.m 运行。没关系。
之后 AppDelegate 类是否运行?xcode 如何确定哪个 View Controller 将首先运行?
当我运行这个项目时,只有黑屏。任何人都可以帮助我了解ios应用程序的运行顺序吗?