I have a class exposing some methods, whose implementation is provided by an inner object.
I\'m using forward invocation to dispatch at runtime the method calls to t
You can declare the methods in a class category interface:
@interface MyClass (ForwardedMethods) - (void)doSomething; @end
(without an implementation for the category). Then Xcode will not complain about "incomplete implementation" anymore.