This is one of those stupid technical problem that I should be able to solve by now, but being bogged down by work and struggling to find programming time I can't seem to figure this out.
Class A is a singleton, it receives input from the user interface using Interface Builder.
Class B is a CCLayer subclass (HelloWorldLayer)
B needs to know about a to send it some data via a method.
A needs to know about B to call some methods in it when it receives certain file data from the NSOpenPanel.
B #imports A
But if A imports B there are problems - (circular importing)
How should I properly reference each class?