Just picking up Objective-C 2.0 and wanted to know if there is any advantage in using the dot operator for accessing properties instead of the "old" way. Short example of what I mean.
"old" way:
[myFraction setNumerator: 1];
[myFraction setDenominator: 3];
"new" way:
myFraction.numerator = 1;
myFraction.denominator = 3;
Thanks!
Rodrigo