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?
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?