greetings,
to add a couple of UITextFields to my cc2d layer, i'm constructing the uikit object manually, and ultimately adding it via:
[[[Director sharedDirector]openGLView]addSubview:submitText];
when i do a replace view on the director to switch to my next scene, all UI objects stay behind.
i know you can do a removeFromSuperview, but you would normally call that on a uiview instance.
is there anyway to remove an individual UI item after it's been added as a subview?
thanks!