我正在使用CCUIViewWrapper
Class 来添加UIControl
Cocos2d。
这是我的代码,
UIView *view=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 480)];
view.backgroundColor=[UIColor greenColor];
CCUIViewWrapper *Wrapper = [CCUIViewWrapper wrapperForUIView:view];
[self addchild:Wrapper];
在我添加之后CCLabelTTF
CCLabelTTF * label=[CCLabelTTF labelWithString:@"Hi" fontName:@"Marker Felt" fontSize:32];
label.position=ccp(160,280);
[self addChild:label];
所以,我的问题是标签没有出现。我也在尝试更改 zOrder 并尝试更改insertSubviewatIndex
.