I have read several of the post about Objective-C method syntax but I guess I don\'t understand multiple names for a method.
I\'m trying to create a method called
Objective-C doesn't have named parameters, so everything on the left side of a colon is part of the method name. For example,
getBusStops: forTime:
is the name of the method. The name is broken up so it can be more descriptive. You could simply name your method
getBusStops: :
but that doesn't tell you much about the second parameter.