Implicit conversion of 'NSInteger' (aka 'int') to 'UILabel *' is disallowed with ARC Ok so this is what I am trying to do- I am following a tutorial on youtube and I have a label on ViewController on Xcode's storyboard and am trying to keep a "high score" on the first screen (view controller) using a label and .text (see below):
HighScore =[[NSUserDefaults standardUserDefaults] integerForKey:@"HighScoreSaved"];
HighScore.text = [NSString stringWithFormat:@"High Score: %li", (long)HighScore];
I did declare NSInteger = HighScore in my .h file and it is included but I still get the "Implicit conversion" error report. Any Clues what's going on?