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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:36:18+00:00 2026-05-23T10:36:18+00:00

When coding with cocoa I’ve noticed that it’s not necessary to have sender parameter

  • 0

When coding with cocoa I’ve noticed that it’s not necessary to have sender parameter when defining IBAction, hence following action:

- (IBAction)showUserInfo:(id)sender;

can be declared as

- (IBAction)showUserInfo;

So I’m wondering if there is any other benefit besides having the button/menu item that sent the action? Only other situation I can think of is having few objects calling same IBAction. Anything else?

  • 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-23T10:36:18+00:00Added an answer on May 23, 2026 at 10:36 am

    It can be handy to use the sender argument when you’re connecting the method to UI objects whose values can change and you may need to work with.

    For instance if I wired up a method to a UISegmentedControl and set it’s control event to UIControlEventValueChanged, I can use the object passed as the sender: argument to obtain it’s selected segment index and then, based on the value, make a change in the UI.

    -(IBAction)segmentedControlValueChanged:(id)sender
    {
        UISegmentedControl *control = (UISegmentedControl *)sender;
    
        // Show or hide views depending on the selected index of the segmented control.
        if (control.selectedSegmentIndex == 0)
            someView.hidden = YES;
        else 
            someView.hidden = NO;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Are there any generally-accepted coding standards (naming, casting etc) that apply specifically to iPhone/Cocoa/Objective-C?
Hey guys, I have a Cocoa application that sends an NSDictionary over the network
I'm not very experienced with Cocoa but I am with MVC and coding in
I'm getting the following error: this class is not key value coding-compliant for the
Coding footer naively, if there's not enough content, then there will be empty space
Our coding standards ask that we minimise the use of C# var (suggests limiting
I am pretty new in developing cocoa applications. I have developed a small UI
Coding Language: C# Framework: .NET We have built a software, which among many other
I'll start by saying that I'm new to cocoa development. I'm also surprised I
I have a method (the code below is a simplified version) that parses small

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.