In c#, if I wanted to tell another programmer to look at a specific function such as Person.GetAge() I would “speak” that function something like…
“Look at Person dot GetAge”
In objective-c this function is [Person getAge] (there is no “dot”). How do people “speak” this to other developers?
Generally just read it like it’s written, with a short pause between the class and method name. For methods like
animationDidStop:finished:context:I don’t even bother with the colons.