What does the meaning of & # 8594; in lens C

Can anyone explain what this means:

oauth->url = [[NSURL alloc] initWithScheme:@"https" host:host path:unencodedPath];

This is a variable assignment, but why does it use '->', is it something like it's a class method?

+5
source share
2 answers

He cites the instance variable urlinstance oauth. This is pure C. syntax

+9
source

Same thing in C / C ++. Objective-C objects do not use -> but C / C ++ classes.

+1
source

All Articles