我正在使用故事板在IOS 5中开发我的第一个iPhone应用程序。根控制器是一个TabBar控制器,它被分割为嵌入在导航控制器中的表视图控制器(TBarController)。
如果是Table View控制器,每个单元格上都有Detail Disclosure按钮。表视图控制器中涉及的代码很少:
-(void)tableView:(UITableView *)tableView
accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath
TBarAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
UITabBarController *tabBarC = appDelegate.tabBarController;
使用调试器时,问题是当我点击Detail Disclosure时tabBarC为'nil'。 任何想法将不胜感激。这是我给SO的第一篇文章 - 请原谅帖子的新手角色。