In my view controller I call with a reference to game, which is an istance of Game class
score.text = [NSString stringWithFormat:@"%d", [game score]];
Game has this:
int score
@property (nonatomic, readwrite) int *score ;
son normally score has a getter. Game.h is included in ViewController.h
Why do I get "unrecognized selector sent to instance"?