How to sort order of targets when using UIControl (specifically UIButton)?

867 Views Asked by At

In my app I have multiple UIButtons for which I add targets.

It turns out that the most recently added target is preformed first and then the remaining targets.

For example, take this code:

[button addTarget:self action:@selector(someAction:) forControlEvents:UIControlEventTouchUpInside];

[button addTarget:self action:@selector(someOtherAction:) forControlEvents:UIControlEventTouchUpInside];

If I would touch up inside button, someOtherAction: would be called before someAction.

That's not what I want. I want to sort the targets so that I can have a touch up inside of that button first called someAction:ability and then other action someOtherAction:

I'm not sure where to begin, should I subclass and override something in UIButton or rather dig inside UIControl?

Thanks for the help!

-David

2

There are 2 best solutions below

4
On BEST ANSWER

The simplest (albeit hacky) way to do this would be to make a copy of all the action selectors, remove them from the target then re-add all of them except the one you want to have happen first.

However, your requirements are likely a side-effect of a poor design decision since this isn't behavior that should be necessary.

What is your end goal of having something happen first?

Why can't you combine both actions in one that executes the selectors in the correct order?

0
On

You could provide an intermediary, or proxy, object that always receives the button's action, and then forwards the appropriate one from an array it contains to the ultimate destination.

One possible way of doing this would be to override the proxy object's -forwardInvocation: and -methodSignatureForSelector: methods. See http://developer.apple.com/library/mac/#samplecode/ForwardInvocation/Introduction/Intro.html