Can anyone tell me why I this png will not show up?
playFieldSprite = [SPSprite sprite];
[self addChild:playFieldSprite];
[self addScoreboard];
}
-(void)addScoreboard
{
SPImage *sb = [SPImage imageWithContentsOfFile:@"rose.png"];
sb.y = 200;
sb.x = 200;
//[playFieldSprite addChild:sb];
}