I have spent a lot of time trying to figure out what the problem is... but with no success.
My code is the following:
ResultGoalViewController *resultGoalViewController = [[ResultGoalViewController alloc] initWithNibName:@"ResultGoalViewController" bundle:nil];
[self.goalNavigationController pushViewController:resultGoalViewController animated:YES];
I get the error: "error:Request for member 'goalNavigationController' in something not a structure or a union."
My class is UIViewController. goalNavigationController is a Navigation Controller (defined within a Tab Controller).
What am I missing?