我对 View Controller 和 App 委托类中的以下方法有点困惑
App委托中的方法:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
ViewController 中的方法:
- (void)viewDidLoad
什么情况下需要在 app delegate 或者 ViewController 方法中添加代码?我相信对于视图的切换,我们需要将它包含在应用程序委托方法中,有什么我们需要遵守的经验法则吗?
谢谢!
甄