I am trying to solve this, there are similar questions but none are fit for my issue
I have .h file with a a @protocol. The @interface needs to have that @protocol defin
Forward-declare the class:
@class MyClass; // Forward declaration @protocol MyProtocol ... @end @interface MyClass ... @end