How do I pass data to a child UINavigationController which is presented modally via "[[UINavigationController alloc] initWithRootViewController:newItemController];"?
That is the way with this method of creating the child controller (i.e. newItemController in this case), it is initialised via the UINavigationController initWithRootViewController method, hence there doesn't seem to be the ability to call a custom newItemController init method here? Nor have access to the newItemController instance itself to call a custom "setMyData" type method?
NewItemController *newItemController = [NewItemController alloc];
newItemController.delegate = self;
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:newItemController];
[self.navigationController presentModalViewController:navController animated:YES];