views:

84

answers:

1

I want to push something onto the iPhone's responder chain. That is, I want to send a selector to a UIResponder subclass and, if it doesn't respond to said selector, have it pass it on to its nextResponder.

Any thoughts?

+5  A: 

See the docs for -[UIApplication sendAction:to:from:forEvent:].

Ah! Exactly what I needed. Many thanks!
jemmons