Quote:
Originally Posted by baja_yu
Instead of having us go through your project, post the relevant code and errors.
|
Sorry, The error I am getting is "Request for member 'FourthViewController' in something not a structure or union"
This is from the AppDelegate
Code:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
// Add the tab bar controller's view to the window and display.
[self.window addSubview:tabBarController.view];
[self.window makeKeyAndVisible];
return YES;
WeatherForecast *forecast = [[WeatherForecast alloc] init];
self.FourthViewController.forecast = forecast;
[forecast release];
}
You need to see the FourthViewController?