What's the purpose for making UIViewController a subclass of UIResponder? Was it done solely to pass the rotation events?

I could not find any definitive info on that in the docs.

Update

I understand that if something is made a UIResponder, this something is suppose to be included in the responder chain and process events. But I have two gnawing doubts.

  1. As far as I know, UIViewConteroller is put into the responder chain right after its view. Why do we need a view controller in the responder chain at all? Its view is already there, so why don't we let the view process the events that were not handled by its subviews?
  2. OK, I'm ready to agree that we might need this. But I would like to see some real life examples, when processing events in a view controller is really needed and is the best/easiest/most appropriate way to do something.
link|improve this question

50% accept rate
feedback

2 Answers

This is going to sound like a glib answer, but it really isn't. UIViewController is a subclass of UIResponder so that is can respond to user actions (e.g. touches, motion, etc.).

If a view does not respond to an event it is passed up the responder chain giving higher level objects a chance to handle it. Hence, view controllers and the application class are all subclasses of UIResponder

You can find more detailed information about the responder chain in Cocoa Application Competencies for iOS: Responder Object on Apple's developer site.

link|improve this answer
That's fine. But could you give some concrete examples when UIViewController actually responses to actions, touches for example? – adubr May 14 '11 at 22:26
OK, a totally contrived example: Suppose you have a number of UIImageViews, each one displaying an animal. When the user touches one you want to play the sound the animal makes. Rather than having each view play the sound you could have the view controller respond to the events and play the appropriate sound. This would allow it to stop the sound that is playing before starting a new one. – idz May 14 '11 at 22:34
Better example: if you wanted to implement drag and drop between two subviews. – idz May 14 '11 at 22:40
With the animal case I would suggest different design, when all info on an animal (the appearance and the sound) is encapsulated inside one model object and presented in one view object, with a controller object just passing the data. (However the animalView might have a method like shutUpTheAnimalNow). As for drag and drop, please see updated question. Why can't UIViewController's view handle this? – adubr May 15 '11 at 13:37
More on animals: may be a subview animalSoundPlayer would be even better :) – adubr May 15 '11 at 13:44
show 1 more comment
feedback

UIViewController is in the responder chain to allow for it to process any event. There are more then just the events you think of (touches) that pass through this chain. Motion events get passed through the chain, touch events that a specific view doesn't handle, you can also force things through the responder chain using [UIApplication sendEvent:...] with a nil target.

The other thing you may notice is UIApplication is also a subclass of UIResponder. All events that aren't handled will end up there.

link|improve this answer
I'm thinking not of the touches but of rotations -- is this the only reason? As for UIAppliction -- it's the main controlling object of the app, so I have no questions on it being a responder. Please check the updated question. – adubr May 15 '11 at 13:40
feedback

Your Answer

 
or
required, but never shown

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