In my app, a specific ViewController overlays itself (as navigational buttons) over a galleryViewController that can be switched around.
However, my issue is that after I allocate a new galleryViewController, then switch to that view, I want to be able to send back information regarding what is being displayed to the original ViewController.
So within this galleryViewController I alloc a viewController object and attempt to do what needs to be done.
However, I've come to understand that this viewController object is a NEW allocated object. So the various UIButtons I want to make hidden and unhide are NOT the ones currently present in the superview - they haven't even been allocated.
How can I access the original viewController - it's the one that is declared and addedToTheSubview in the appDelegate.
I am not really sure how much I was able to properly relate, if there are any specific code questions please ask and I can post it. I don't have any errors in my code, just more of a question of syntax.
I posted this same question on iphonedevsdk as well, so if I get any info from there I'll gladly update the progress of this question.