I have an error in this line.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
[self.window addSubview:_viewController.view];
[self.window makeKeyAndVisible];
return YES;
}
I'm using Xcode 4.1 and reading Appress Book "Beginning iPhone 4 Development" Chapter 4.
Regards, Herman