我有一个将 rootViewController 类设置为 CoursesTableViewController 的故事板。
为什么在 appDelegate 中我需要像本例中那样使用类型转换...
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
CoursesTableViewController *cvtc
= (CoursesTableViewController *)self.window.rootViewController;
为什么我不能这样做...
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
CoursesTableViewController *cvtc = self.window.rootViewController;