It's either because of the fact I'm tired or because I'm doing it wrong, but for some reason I can't get it to call a method.
Here's what I'm trying to call:
-(void)newHighScore:(int)d
Which right now just does an NSLog saying "yea I'm working!"
I'm calling it like this:
[highscore newHighScore:score];
highscore is what I called the HighScore class in the .h, and score is an int with the score.