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?
He cites the instance variable urlinstance oauth. This is pure C. syntax
url
oauth
Same thing in C / C ++. Objective-C objects do not use -> but C / C ++ classes.