I am finding it very difficult to grasp how the Views are loaded and wired with the TabBarController in the iPhoneCoreDataRecipes App.
Does anyone have any pointers on how to learn the concepts presented in this Apple sample App? I have read the other items on Apple developer site.
- (void)applicationDidFinishLaunching:(UIApplication *)application {
recipeListController.managedObjectContext = self.managedObjectContext;
[window addSubview:tabBarController.view];
[window makeKeyAndVisible];
}
My understanding of the above
Line 2: Populating the list controller?
Line 3: Adding a Sub view to the tab controller view?
If my understanding of line 3 is correct, where are the other views, Unit Conversion, added to the tabcontroller?