cocos2d :请告诉我如何显示已添加CCSprite的控制台CCLayer?
CCSprite *sprite = [CCSprite spriteWithFile:@"bird.png"];
sprite.position = ccp(winSize.width/2-100, winSize.height/2);
[super addChild:sprite];
NSLog();
我现在要添加精灵的图层的控制台名称?
答案 0 :(得分:0)
我怀疑你想[超级addChild],你的意思是[self.parent addChild:sprite]?回答你的问题
NSLog(@"SPrite's parent is %@",sprite.parent];
默认情况下会为您提供任何CCNode的'description'属性。总的来说,我发现它没有提供信息。但是,这将在控制台上记录精灵是孩子的“对象”。