I saw the blog post and tried the code that it gave me but didnt work. Can someone please tell me if im doing anything wrong. Im just puting the following code into my main method.
- (id)initWithWidth:(float)width height:(float)height { if (self = [super initWithWidth:width height:height]) { //Make LandScape mContents = [[SPSprite alloc] init]; mContents.rotation = SP_D2R(90); mContents.x = 320; [self addChild:mContents]; SPQuad *quad = [SPQuad quadWithWidth:480 height:320]; quad.color = 0xffffff; [self addChild:quad]; } return self; }
Please help