Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8989965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T22:23:28+00:00 2026-06-15T22:23:28+00:00

This maybe a stupid question, but I want to know if I can copy

  • 0

This maybe a stupid question, but I want to know if I can copy the “event handler” of a control on objective C or not. e.g I have a button “FIRST”, this button will fire the method “clickEventHandler” whenever user click it. Now I have a button “SECOND”, I just need second button does similar what the first button does no matter what first button does.

Please give me a solution for this. Any recommend are welcome also.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T22:23:29+00:00Added an answer on June 15, 2026 at 10:23 pm

    Given the target and action for buttons is generally set using Interface Builder, I think the best solution might be to have a common method which “routes” the event. So have both buttons call:

    - (IBAction)eventRouter:(id)sender
    {
        // Don't forget to set the button's tag in IB!
        NSInteger tag = [sender tag];
    
        switch (tag)
        {
        case BUTTON1_TAG:
            [self button1Method:sender];
            break;
        case BUTTON2_TAG:
            [self button2Method:sender];
            break;
        default
            break;
        }
    }
    

    You can then change the routing at runtime without the need to edit the buttons in IB.

    EDIT (after question from OP):

    In order to get the action (and target) from the button programmatically, just access the action and target properties of the NSButtonCell.

    NSButton *button = (NSButton *)sender;    // Or perhaps from an IBOutlet
    id target = button.cell.target;
    SEL action = button.cell.action;
    
    // Call the button's action selector
    [target performSelector:action withObject:self];   // or withObject:sender
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is maybe a stupid question, but I want to know if my code
Ok I know this sounds like a stupid question but I JUST CAN NOT
This maybe a stupid question, but as I can not easily undo my change
Maybe this is a stupid question but it's bugging me. I have a bi-directional
maybe this is a stupid question, but i have seen many Tuts that build
I know this may be a stupid question to ask but I have really
I know this may be a stupid question to ask but I want to
I'am new to jquery and maybe this is a stupid question but I have
Maybe this is stupid question, but I'd like to raise here since it's not
At first, this question can sound really stupid, but it is not in fundamental.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.