在下面的单击按钮上调用代码,但我的weeklyReviewViewController.xib未加载,但应用程序正在注销到初始视图控制器。
if(buttonIndex == 0){
NSLog(@"0");
[self.viewController initWithNibName:@"WeeklyReviewViewController" bundle:nil];
navcnt = [[UINavigationController alloc] initWithRootViewController:self.viewController];
NSLog(@"navigation controller %@",navcnt);
notificationCounter = YES;
self.window.rootViewController = navcnt;
}
答案 0 :(得分:0)
请检查self.viewController的类型是否与WeeklyReviewViewController的类型相同。