我有一个类型的ItemsViewController

  @interface ItemsViewController : UITableViewController


现在,我从didFinishLaunchingWithOptions中的appdelegate调用,就像这样

    ItemsViewController *itemsViewController = [[ItemsViewController alloc] initWithNibName:@"ItemsViewController" bundle:nil];

   // Create an instance of a UINavigationController
   // its stack contains only itemsViewController
UINavigationController *navController = [[UINavigationController alloc]
                                        initWithRootViewController:itemsViewController];

   // Place navigation controller's view in the window hierarchy
[[self window] setRootViewController:navController];


self.window.backgroundColor = [UIColor whiteColor];
[self.window makeKeyAndVisible];
return YES;


现在在ItemsViewController.m文件中,我确实点击了此方法:

  - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
  {
      self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
      if (self) {
         // Custom initialization
  }
  return self;
  }


但是这里的问题是它从来没有打过viewdidload方法?我应该找什么?我很困惑!!

最佳答案

好的,很好,我发现了问题,我对这个项目进行了太多的编辑,以至于我不小心删除了didFinishLaunchingWithOptions方法开头的最重要的一行。这是:

  self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];


无论如何,所以我现在要自杀,请随时推荐一种死亡方法(clorox鸡尾酒,走进交通),如果您想写一些关于我的好话发表
以我的悼词

谢谢。

08-05 22:44