I am trying to perform action like changing color of label, when user touches the button but I am unable to find the correct solution in Cocos2d.
Regards
I am trying to perform action like changing color of label, when user touches the button but I am unable to find the correct solution in Cocos2d.
Regards
Edited answer after clarifying comment: if you want to change the color of the button/label or the background sprite frame based on which state the button is in (i.e. normal, highlighted, disabled, selected) you can set the different background/label properties, example:
[button setLabelColor:[CCColor redColor] forState: CCControlStateHighlighted];
The above example will make the button label flash in red when the button is pressed. If you need more detailed control of what should happen (animations or other) you will need to create a custom subclass of either CCButton or CCControl (which is the base class CCButton inherits from), depending on how complex your needs are, and implement the different touch event methods.