Objective-C "class prototyping"

54 Views Asked by At

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?

0

There are 0 best solutions below