I have one page(say X) before tab bar controller that use model segue to open tab bar controller. Also first screen of tab bar controller is same with X. I want to pass data from X to tab bar controller's first page.
Shortly, I want to pass data from view controller to tab bar controller' page with storyboard segue. Is there any method for this ?
Here is the solution ;
locationsHome* vc = [[locationsHome alloc] init];
UITabBarController* tbc = [segue destinationViewController];
vc = (locationsHome *)[[tbc customizableViewControllers] objectAtIndex:0];
segue.destinationViewController, but I'm glad to see you solved your problem. – Rob Sep 29 '12 at 13:59