I have been using @selector today for the first time and have not been able to work out how to do the following? How would you write the @selector
@selector
As KennyTM pointed out, the selector syntax is
@selector(printText:andMore:)
You call it with
performSelector:withObject:withObject.
... if you need more arguments or different types, you need to use NSIvocation