Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using addTarget:action:forControlEvents like this:

[newsButton addTarget:self
action:@selector(switchToNewsDetails)
forControlEvents:UIControlEventTouchUpInside];

and I would like to pass parameters to my selector "switchToNewsDetails". The only thing I succeed in doing is to pass the (id)sender by writing:

action:@selector(switchToNewsDetails:)

But I am trying to pass variables like integer values. Writing it this way doesn't work :

int i = 0;
[newsButton addTarget:self
action:@selector(switchToNewsDetails:i)
forControlEvents:UIControlEventTouchUpInside];

Writing it this way does not work either:

int i = 0;
[newsButton addTarget:self
action:@selector(switchToNewsDetails:i:)
forControlEvents:UIControlEventTouchUpInside];

Any help would be appreciated :)

share|improve this question
what is the method signature for switchToNewsDetails ? – Aaron Saunders Oct 21 '10 at 14:25
- (void)switchToNewsDetails:(id)sender; - (void)switchToNewsDetails:(int)i:(id)sender; – Pierre Espenan Oct 21 '10 at 14:26
but what that i depends on? is it specific for each button? See my answer - isn't tag property is what you need? – Vladimir Oct 21 '10 at 14:37

5 Answers

up vote 56 down vote accepted
action:@selector(switchToNewsDetails:)

You do not pass parameters to switchToNewsDetails: method here. You just create a selector to make button able to call it when certain action occurs (touch up in your case). Controls can use 3 types of selectors to respond to actions, all of them have predefined meaning of their parameters:

  1. with no parameters

    action:@selector(switchToNewsDetails)
    
  2. with 1 parameter indicating the control that sends the message

    action:@selector(switchToNewsDetails:)
    
  3. With 2 parameters indicating the control that sends the message and the event that triggered the message:

    action:@selector(switchToNewsDetails:event:)
    

It is not clear what exactly you try to do, but considering you want to assign a specific details index to each button you can do the following:

  1. set a tag property to each button equal to required index
  2. in switchToNewsDetails: method you can obtain that index and open appropriate deatails:

    - (void)switchToNewsDetails:(UIButton*)sender{
        [self openDetails:sender.tag];
        // Or place opening logic right here
    }
    
share|improve this answer
what if we're trying to pass something other than integers? what if I need to pass an object like a string? – user102008 Apr 6 '11 at 22:55
@user what's your context? Seems you'll need to pass it separately – Vladimir Apr 7 '11 at 8:17
thanks a lot. where did you find this data? I always appreciate the reference so that maybe I could find it myself next time. – bearMountain Mar 30 '12 at 16:33
1  
@bearMountain you can check this link:developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/… for example – Vladimir Mar 30 '12 at 20:05

Target-Action allows three different forms of action selector:

- (void)action
- (void)action:(id)sender
- (void)action:(id)sender forEvent:(UIEvent *)event
share|improve this answer

See my comment above, and I believe you have to use NSInvocation when there is more than one parameter

more information on NSInvocation here

http://cocoawithlove.com/2008/03/construct-nsinvocation-for-any-message.html

share|improve this answer
Actually, I don't want to pass several params, I just want an integer. – Pierre Espenan Oct 21 '10 at 14:33
actually there's performSelector:withObject:withObject: method that allow to call selectors with 2 parameters. But for more you need NSInvocation – Vladimir Oct 21 '10 at 14:35
@Vladimir thanks, did not know that – Aaron Saunders Oct 21 '10 at 14:39

This fixed my problem but it crashed unless I changed

action:@selector(switchToNewsDetails:event:)

to

action:@selector(switchToNewsDetails: forEvent:)

share|improve this answer

To pass custom params along with the button click you just need to SUBCLASS UIButton.

(ASR is on, so there's no releases in the code.)

This is myButton.h

#import <UIKit/UIKit.h>

@interface myButton : UIButton {
    id userData;
}

@property (nonatomic, readwrite, retain) id userData;

@end

This is myButton.m

#import "myButton.h"
@implementation myButton
@synthesize userData;
@end

Usage:

myButton *bt = [myButton buttonWithType:UIButtonTypeCustom];
[bt setFrame:CGRectMake(0,0, 100, 100)];
[bt setExclusiveTouch:NO];
[bt setUserData:**(insert user data here)**];

[bt addTarget:self action:@selector(touchUpHandler:) forControlEvents:UIControlEventTouchUpInside];

[view addSubview:bt];

Recieving function:

- (void) touchUpHandler:(myButton *)sender {
    id userData = sender.userData;
}

If you need me to be more specific on any part of the above code — feel free to ask about it in comments.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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