私は CCLayer の "init" メソッドでこのコードを書きました:
//textField
UITextField *tf = [[[UITextField alloc] init] autorelease];
tf.borderStyle = UITextBorderStyleRoundedRect;
CCUIWrapper *tfwrapper = [CCUIWrapper wrapperForUIView:tf];
tfwrapper.anchorPoint = ccp(0, 0);
tfwrapper.contentSize = CGSizeMake(100, 20);
tfwrapper.position = ccp(100, 100);
[self addChild:tfwrapper];
UITextField が表示されないのはなぜですか?