我正在使用故事板和tabbar控制器。在故事板里面,我添加了一个viewController并使它成为类AgendaViewController
。这个Viewcontroller嵌入在导航控制器中。现在在我的AgendaViewController的.m中,我添加了这段代码。
calendar = [[KalViewController alloc] init];
calendar.title = @"";
calendar.delegate = self;
dataSource = [[AgendaDatasource alloc] init];
calendar.dataSource = dataSource;
[self.navigationController pushViewController:calendar animated:YES];
这很有效。但是当我再次按下tabbarbutton时。 (所以我刷新了我的视图)我得到一个白色的屏幕。白色屏幕只是AgendaViewController的视图
任何帮助?