Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am building class to is a sub class of CCSprite:

The problem is i keep getting "Type name requires a specifier or qualifier".

I have the code commented where i get the errors. Im not sure what i am doing wrong.

int tileSize = 80;
Boolean moveable = true;
id moveUp,moveRight,moveDown,moveLeft;

@interface Player : CCSprite {

//On these lines. 
moveUp = [CCMoveTo actionWithDuration:2 position:ccp(0, 0 - tileSize)];
moveDown = [CCMoveTo actionWithDuration:2 position:ccp(0,0+tileSize)];
moveRight = [CCMoveTo actionWithDuration:2 position:ccp(0+tileSize,0)];
moveLeft = [CCMoveTo actionWithDuration:2 position:ccp(0-tileSize,0)];


}


-(void)move;



@end


@implementation Player{





@end
share|improve this question
2  
I strongly suggest you refrain from writing another line of Objective-C code until you become familiar with the basics. – trudyscousin Dec 17 '12 at 22:00

1 Answer

You can't put code in your interface like that - it needs to be in a method or function. The only things that should be in there are a list of properties.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.