self.background = [CCSprite spriteWithFile:@"LetterBrick.png"];
CCLOG(@"background contentSize: (w: %d, h: %d)", self.background.contentSize.width, self.background.contentSize.height);
CCLOG(@"background boundingBox: (x: %d, y: %d, w: %d, h: %d)", self.background.boundingBox.origin.x, self.background.boundingBox.origin.y, self.background.boundingBox.size.width, self.background.boundingBox.size.height);
/**
OUTPUT:
background contentSize: (w: 0, h: 1078984704)
background boundingBox: (x: 0, y: -1069547520, w: 0, h: -1069547520)
*/
所以基本上我只是从一个文件中创建一个 CCSprite,然后打印出 contentsize 和边界框。但这些值似乎有点奇怪。
你能帮我吗?:)