我想在横向 iPhone 中全屏显示背景图像。在 iPhone 模拟器中,图像出现,但不是全屏。这是我的代码
CGSize size=[[CCDirector sharedDirector] winSize];
[self addChild:backgroundImage z:0 tag:0];
NSLog(@"size.height %f,size.width %f,image.width %f,image.height %f",size.height,size.width,backgroundImage.contentSize.width,backgroundImage.contentSize.height);
Xcode输出size.height 480.000000,size.width 320.000000,image.width 480.000000,image.height 320.000000 我知道iPhone是480*320点。为什么图片不是全屏?