I'm currently working on an NSProxy
subclass which intercepts certain messages and never forwards them to anyone but just processes them, so these methods never really exist. And here comes the problem, obviously the compiler starts to complain about the missing method implementations and I can't figure out how to stop it, adding stub methods to the interface just to get the compiler to shut up doesn't work because the methods are arbitrary formed and I don't know them ahead (to make it a bit more specific, I'm asking for this project).
Ideally I would like to tell the compiler that it shouldn't do any method checking for this specific class at all, but as this seems rather unlikely I would also be happy for a #pragma
or any other way (which doesn't include to shut the compiler up for every warning in the whole project/file!)