I’ve got a CCScene with few UIKit elements [UITextView for example].
After some user interaction I want to open a popup over the scene to also cover part of the UITextView.
It doesn’t matter what z index I am using, it will always appear under the text view.
Any tips on how to do it?
I’ve got a CCScene with few UIKit elements [UITextView for example]. After some user
Share
Your CCNodes are drawn within the EAGLView Cocos is using. You need to manage the order of EAGLView(s) relative to other UIViews. Take a look at http://www.gdcvault.com/play/1012504/The-Best-of-Both-Worlds for an example of mixing Cocos drawing in EAGLViews with other UIKit views.