Re: Removing an action from a subclass

Kyle Sluder <[email protected]> Tue, 21 Dec 2010 12:25:49 -0800
Newsgroups gmane.comp.macosx.devel
Message-ID <[email protected]>
On Tue, Dec 21, 2010 at 10:37 AM, Christiaan Hofman <[email protected]> wrote:
> A view I subclass implements an action that I don't want to support in that view, however I would like the action to be send up the responder chain to the controller object. How can I disable the action in my subclass in such a way that the responder chain does not stop at this view, as if the action method was never implemented?

This is a problem we had too. There's no standard way to do this. We
reimplemented the responder chain as part of OAApplication and called
it OATargetSelection:
https://github.com/omnigroup/OmniGroup/blob/master/Frameworks/OmniAppKit/OAApplication.m

--Kyle Sluder