In Objective-C, colons are part of the method name. That is, myMethod
and myMethod:
are clear selectors (and in your case only the latter exists).
For example, for a method declared as:
-(void)doSomethingWithFoo:(int)foo andBar:(int)bar;
doSomethingWithFoo:andBar:
selector.
source share