I have a cocoa application which has certain subroutines / methods. So if I have a method like this:
- (void) dummyMethod:(NSObject*)dummy
{
//code
}
Can I call it from an outside application providing I have the correct headers? I mean linking an application with another application. That method is an instance method by the way.
Sorry if that sounds absurd.