NSString* director;director = [[[movie director] fullName]...
NSString* director;director = movie.director.fullName...
Technorati ProfileCopyright © Scott Stevenson 2004-2006
by Glenn — Sep 07, 08
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.