I'm using Cocos2D, and I need to access a parent method in a UIView that is added to a UIViewController from another class. My hierarchy goes like this:
Branch 1: window > viewController.view > glView > joinedMapsScene > joinedMapsLayer
Branch 2: window > viewController.view > foregroundLabelView
When my label class used to be part of Cocos2D, accessing was easy by doing something like this:
JoinedMapsScene *joinedMapsScene = (JoinedMapsScene*)self.parent;
[joinedMapsScene.tetraCounter incTetras:-1];
But now I need to call the method in foregroundLabelView from joinedMapsLayer. It may not be so much of a cocos2D question, but I'm just really confused about this sort of stuff still.