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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T03:20:26+00:00 2026-05-26T03:20:26+00:00

In Objective-C there is a type named SEL . It’s defined like this: id

  • 0

In Objective-C there is a type named SEL. It’s defined like this:

id (*SEL)(id self, SEL _cmd,...);

but if we make a method whose return type is double, the id type is not good to use.

How can the Objective-C runtime work with this problem?

  • 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-26T03:20:26+00:00Added an answer on May 26, 2026 at 3:20 am

    SEL is defined as typedef struct objc_selector *SEL;, so you are wrong.

    SEL is a type used to store a selector, which basically is the “name” of a method, along with some other information.


    Anyway,

    In the case of a double return type, Objective-C will simply return a double. It doesn’t care about how SEL and id are declared. (Just like printf but the other way around: return value instead of function arguments.)

    The implementation of the +[A a] method in this sample program:

    @interface A
    
    + (double)a;
    
    @end
    
    @implementation A
    
    + (double)a {
      return 1.0f;
    }
    
    @end
    
    int main() {
      double b = [A a];
      return 0;
    }
    

    Gives this assembly output (which is a function with a generated name you don’t know: you can’t just call it by its name*):

    Leh_func_begin0:
    ## BB#0:
        pushq   %rbp
    Ltmp0:
        movq    %rsp, %rbp
    Ltmp1:
        movabsq $1, %rax  ; <-- moves 1.0f into the register
        cvtsi2sdq %rax, %xmm0 ; <-- converts quadword integer to double precision
        movq %rdi, -8(%rbp)
        movq %rsi, -16(%rbp)
        popq %rbp
        ret ; <-- returns control
        ; afterwards, the _main function gets the return value from the register
    Leh_func_end0:
    

    It just returns a double, even if a double needs more bytes than id. It isn’t translated to C in between, so this is no problem. Note that the returned values of Objective-C methods are not type-safe.

    The main function calls _objc_msgSend (which calls the “nameless” function pointed to by the IMP*) and puts the return value of it into b.


    *the address of that function is stored in the method definition as a variable of type IMP. An IMP is defined id (*IMP)(id, SEL, ...).

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

Sidebar

Related Questions

Are there standard optimization tricks for Objective-C to make for faster execution along the
So I think I am almost there conceptually but need some missing pointers. Objective
Is there any centralized repository of useful Objective-C / Cocoa libraries as there is
In Objective-C on Apple there is something called Key-Value Coding that allows you to
Is there a way in objective-c/Cocoa to alloc an object when the class name
Are there any shortcuts to ( stringByAppendingString: ) string concatenation in Objective-C, or shortcuts
Is there a generally-accepted documentation generator for Objective-C (similar to RDoc for Ruby)? I've
Is there a canonical way to randomize an array in Objective-C?
Is there anyway we can take input from command line in Objective-C, the way
Is there any pdf which tells about coding guidelines in objective C. For Example...

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.