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
The text before each parameter is part of the method name. From your example, the name of the method is actually
-getBusStops:forTime:
Each : represents an argument. In a method call, the method name is split at the :s and arguments appear after the :s. e.g.
[getBusStops: arg1 forTime: arg2]