I have a function that returns “id”. Does this include a return of void? (as in nothing) Or does “id” require some kind of object/variable?
Share
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.
In Objective-C,
idis a keyword that represents an untyped object pointer. It’s kinda like void*, the untyped pointer, but it adds the restriction that the pointer must point to some sort of Objective-C object.