In Xcode, I have a forward-declared class to avoid circular import, for example.
@class MyClass;
And then I call the method call in this class, for example.
[MyClass myMethod]
But I get a front class warning, for example.
warning: MyClass receiver is a front class and the corresponding @interface may not exist
How can I hide them throughout the project?
source
share