Sorry, couldn\'t find a more appropriate title.
In My code I have two classes which should know of each others existence. So I use an instance variable which points to t
In the header, use forward declaration:
@class IRCConnection; @interface MainMenuController : NSViewController { IRCConnection *ircConnection; // ok }
In the source file (.m), do #import.
.m
#import