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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:59:50+00:00 2026-05-22T21:59:50+00:00

In Objective-C, is it considered good or bad practice to replace argument types with

  • 0

In Objective-C, is it considered good or bad practice to replace argument types with more specific (subclass) argument types in your implementation of a delegate/protocol method?

For instance, according to the documentation for UIGestureRecognizer:

The action methods invoked must conform to one of the following signatures:

- (void)handleGesture;
- (void)handleGesture:(UIGestureRecognizer *)gestureRecognizer;

When I add a UITapGestureRecognizer to a view, I know that the argument to handleGesture: will be of type UITapGestureRecognizer (unless another gesture recognizer is added later). Is it frowned upon to replace the UIGestureRecognizer argument with an argument of type UITapGestureRecognizer? For example:

- (void)handleGesture:(UITapGestureRecognizer *)gestureRecognizer
{
    // implementation
}
  • 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-22T21:59:50+00:00Added an answer on May 22, 2026 at 9:59 pm

    Protocols won’t let you do this, because the argument types are part of the protocol specification. But you can, and often should, do this with action methods. I have seen code for action methods that looks like this:

    - (void)somethingOrOtherAction:(id)sender
    {
        UIButton *button = (UIButton *)sender;
        /* do something with |button| */
    }
    

    This code only works when the sender is a button, so there’s no reason for the argument’s type to be anything other than UIButton *. As far as the generated code is concerned, they’re both pointers to objects, so one is as good as the other. But eliminating the cast makes the code cleaner while also revealing your intent.

    The one thing that argues against this in your case is that, if you are not actually using anything that UITapGestureRecognizer offers over UIGestureRecognizer, then specifying the more specific type would be over-specifying the argument type relative to what the code actually expects. If the code would in fact work with a more general type, then you should consider using that more general type.

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

Sidebar

Related Questions

Does objective-c methods support pass by value? Or perhaps to be more specific: Is
When you declare a @property and @synthesize it, it is considered good practice to
Objective-C has no namespaces; it's much like C, everything is within one global namespace.
Objective: take a UIImage, crop out a square in the middle, change size of
Objective : Make a progress bar where users can check how much of a
Objective-C uses a sophisticated message-passing system when one object calls a method on another
Objective: In support of a Windows Service that may have multiple instances on a
Objective: My script will download a remote file upon form submission, since the file
Objective Change these filenames: F00001-0708-RG-biasliuyda F00001-0708-CS-akgdlaul F00001-0708-VF-hioulgigl to these filenames: F0001-0708-RG-biasliuyda F0001-0708-CS-akgdlaul F0001-0708-VF-hioulgigl Shell
The Objective Caml language will only produce stack traces if you ask for them

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.