NSString* director;director = [[[movie director] fullName]...
NSString* director;director = movie.director.fullName...
Copyright © Scott Stevenson 2004-2015
by Glenn — Sep 07
Not to put too fine a point on it, but...I don't think so.
The first example formats:
NSString* director;director = [[[movie director] fullName]...
while the second formats:
NSString* director;director = movie.director.fullName...
I don't know if all of those punctuation... classes would still be there if the first example used dot notation.