How would I send a Selector to another class? I know to send it to a selector in the same file you do
[self performSelector:@selector(doSomething)];
and for sending it to another class I've tried
[otherClass performSelector:@selector(doSomethingElse)];
But I just get an error in the Debugger saying
+[otherClass doSomethingElse]: unrecognized selector sent to class 0xe5c4
Why is this??
EDIT In Response To Daves Answer
' Chances are it's not a class method but rather an instance method … '
How do I create an Instance of My Class then?