1.

What is dot notation?

Answer»

The dot syntax is a shortcut for CALLING getter and setter.

You can USE this:
[foo length]
foo.length
are EXACTLY the same, as are:
[foo setLength:5]
foo.length = 5



Discussion

No Comment Found