当此图标在文件树查看器中显示为灰色时,这意味着什么?
我的主要问题是我尝试使用此方法导航到另一个视图中的按钮单击视图。
- (IBAction) organizeMeetingButtonPressed:(id)sender
{
OrganizeMeetingViewController *viewController = [[OrganizeMeetingViewController alloc] initWithNibName:@"OrganizeMeetingView" bundle:nil];
[self.navigationController pushViewController:viewController animated:YES];
}
这是在controller1中编写的,它试图访问控制器2(OrganizeMeetingViewController)。我相信错误是在与实际视图的xcode连接中。因此我的问题是关于灰色图标