I haven't figured out that yet: I have a mainViewController that switches two views, viewControllerA and ViewControllerB. The way I switch the view is by having a UIButton (mainButton) in the mainViewController, and clicking on it switches viewControllerA <--> ViewControllerB.

Now here is my problem. My ViewControllerA has a UIButton (ButtonA). And I want that by clicking on it, it tells the mainViewController to switch to the other view (viewControllerB)

In other words, the child view (viewControllerA) should send a message to the mainViewController(its parent view) that it wants to fire a method that belongs to the main view, not to itself (viewA).

How could I achieve that please?

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

When communication to parent objects you have a few design patterns to choose from. Delegation and Notification are both good choices.

The big idea here is communication with loose coupling. Notifications use a Singleton to handle communication while Delegation uses weak references to parent objects. (Check out Cocoa With Love: retain cycles)

If you go with delegation, you can create an informal protocol for your ViewControllerA which MainViewController must conform to.

You may call it the ViewControllerADelegate protocol:

    @protocol ViewControllerADelegate

    @optional
    - (void)bringSubViewControllerToFront:(UIViewController*)aController;

    @end

Or ViewControllerA can post a notification:

[[NSNotificationCenter defaultCenter] postNotificationName:@"MyFunkyViewSwitcherooNotification" object:self];

And MainViewController should be listenting if it wants to know:

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(swapThoseViews:) name:@"MyFunkyViewSwitcherooNotification" object:nil];
link|improve this answer
I like the notification concept, sounds like firing/catching events in .Net, I'm going to try that when I get home. Thx Corey! – Yohann T. Aug 11 '09 at 15:40
Works. (little typo: remove ":" in the @selector(swapThoseViews:) ). – Yohann T. Aug 14 '09 at 13:19
Why can't Apple's own documentation be so plain? – Wayne Hartman Jun 11 '10 at 3:01
Great stuff, I agree: Why can't Apple's own documentation be so plain. – maralbjo Jun 16 '10 at 10:47
1  
if you don't define the protocol, you have to import the class header, which couples the classes. Defining a protocol alleviates this. – Corey Floyd Jun 17 '10 at 4:50
show 1 more comment
feedback

There are a few ways to achieve this: Take a look at protocols http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/ObjectiveC/Articles/ocProtocols.html here, also take a look at the RootViewController use in some of apples sample project, Metronome here http://developer.apple.com/iphone/library/samplecode/Metronome/ is using this to switch from the main view to the preferences view. Look at modal view controllers and their interactions in the View COntroller programing guide, http://developer.apple.com/iphone/library/featuredarticles/ViewControllerPGforiPhoneOS/PresentingModelViewControllers/PresentingModelViewControllers.html and you can also look at the answers here http://stackoverflow.com/questions/1124859/switch-between-3-or-more-views/1129182#1129182

link|improve this answer
very good as well. – Yohann T. Aug 12 '09 at 2:19
feedback

Yohann, you are wrong, the syntax @selector(swapThoseViews:) needs the ":" , must have had a different problem

link|improve this answer
you are correct. – Yohann T. Dec 14 '09 at 16:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.