I have a variable declared in the header file :
@interface
int _nPerfectSlides;
and
@property (nonatomic, readwrite) int _nPerfectSlides;
and I have a method that I declared in the header :
+ (void) hit;
The method has the following code in it :
+ (void) hit {
NSLog(@"hit");
_nPerfectSlides = 0;
[_game showHit];
}
now for some reason I get the error "Instance variable '_nPerfectSlides' accessed in class method" error and it seems like I cant access any variables inside the method. What am I doing wrong?
See Question&Answers more detail:os