I want that something like this:
[myObject selectorNotDefined];
will cause a warning. Is there an option to make this happen?
To be more specific, when I add this code to my existing project:
NSObject *myObject = [[NSObject alloc] init];
[myObject selectorNotDefined];
The compiler will not invoke any warning.
If I create a new project and add these lines it invokes a warning.
What's wrong with my existing project?