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 6350731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T21:52:04+00:00 2026-05-24T21:52:04+00:00

How can I tell programmatically if a IBAction has been called by code or

  • 0

How can I tell programmatically if a IBAction has been called by code or by user action.

Eg
I have a method, -(IBAction)someMethodWithIts:(id)sender
which I have linked to a valueChanged on a UISegmentedControl.

It can be called by,

  1. User changing segment
  2. setting the selectedIndex in code
  3. calling [self someMethodWithIts:foo];

Is there a way to distinguish if the call has come from the first way?

Cheers

Sam

  • 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-05-24T21:52:05+00:00Added an answer on May 24, 2026 at 9:52 pm

    If you can pass nil as the sender (which is traditional) and use that to indicate it was sent programmatically, that’s ok. But anything else I believe is too fragile and you should break up the code like this:

    - (void)someMethod {
      // stuff shared by everyone
    }
    
    - (IBAction)someMethodWithIts:(id)sender {
      // stuff specific to IBAction
      [self someMethod];
    }
    

    If you really want a sender, then you can do it this way:

    - (void)someMethodWithIts:(id)sender triggeredByUser:(BOOL)isUser {
    }
    
    - (IBAction)someMethodWithIts:(id)sender {
      [self someMethodWithIts:sender triggeredByUser:YES];
    }
    

    But in general, if you want the IBAction to be different than programatic changes, then don’t wire programatic changes to the IBAction.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a UINavigationController, and I was wondering how I can programmatically tell when
How can you programmatically tell an HTML select to drop down (for example, due
How can I programmatically tell if the terminal services service is running and is
can anyone tell me how can I (programatically) add the current/selected user to a
Anyone can tell me which one is better (JAXB or Apache XMLBeans) taking in
so from what i can tell, you have to specify artifacts and working directory
can anyone tell me how I programmatically retrieve the actual Locale and/or Language in
Can anyone tell me what is the fastest way to programmatically convert a SAS
How can I tell Windows XP to switch to standby mode programmatically with C/C++
How can I programmatically tell in C# if an unmanaged DLL file is x86

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.