As far as I know, it’s a pointer to the superclass. It’s hard-wired with the superclass, and not dynamically figured out at runtime. Would like to know it more in detail…
Anyone?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
superEssentially, it allows you to use the implementations of the current class’ superclass.
For the gritty details of the Objective-C runtime:
[super message]has the following meaning:So yes, it is static, and not determined at runtime.