0

In C++, you can sort of "prototype" a class in a header file, and actually include it in the implementation;

//...
class Bar;

class Foo{
    public:
        Foo();
        Bar* getBar();
};
//...

Is there a way to do this in Objective-C?

Dirk
  • 2,094
  • 3
  • 25
  • 28

0 Answers0