Possible Duplicate:
What is “->” in Objective C?
what is the “->” in objective-c?
And what is it used for?
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.
It’s the same as in C. Objective-C is a strict superset of C, so it inherits all the syntax. In C:
is the same as:
The syntax
*xdereferences the pointerx, and.accesses a property on the result of the dereferencing.