I have a custom CCNode that I am using for providing notifications on a popup basis. I am trying to disable the background when the CCNode is popped up but allow user interaction on the new CCNode.
I can disable the parent UIView by using the following when the popup is called
[[[CCDirector sharedDirector] view] setUserInteractionEnabled:NO];
In the class for my custom CCNode notification I have the button set to the following to try and override the previous code so that the button is the only touchable event
_buttonOK.userInteractionEnabled = TRUE;
However this is not working and the whole view's user interaction is disabled. How would I override this to enable only the _buttonOK to be touchable?