Sorry for the vague title but I didn't really know how to describe my issue.
I have 2 layers in my GameScene -- gameLayer and HudLayer.
I have a method in my HudLayer that sets the score to show and the user's health level. I am having trouble calling that method from the init of my gameLayer
[hudLayer updateHealth:50]
I have tried rearranging the order of what gets initialized first in the GameScene. Is what I need to do possible? Or do I have to save this data out to a text file and have the hud read the text file on init?