I'm new with iphone development
I created my storyboard with tabbar and tabbaritems with their viewcontroller
but now I would like to access viewcontroller instances from my uitabbarcontroller.m
anybody have any url with code example?
the codes I find are very simple use or tabbar, mostly just the storyboard which doesn't help in anything...
thanks
---solution after help from Muller
on the uitabbarcontroller:(I placed a breakpoint and was able to retrieve the collection of viewcontrollers)
- (void)viewDidLoad
{
NSArray *arr = self.viewControllers;
}