I have a NSString that I use NSUserDefaults to store and move between multiple view controllers. The problem is, the NSString will not display in the label I am trying to show it in. Here is my code, I have no errors.
First View Controller:
NSString *scoreString = [NSString stringWithFormat:@"%d", score];
NSString *score = @"message";
[[NSUserDefaults standardUserDefaults]
setObject:scoreString forKey:@"score"];
Second view Controller:
- (void)viewDidLoad {
[[NSUserDefaults standardUserDefaults] objectForKey:@"Score"];
NSString *savedValue = [[NSUserDefaults standardUserDefaults]
stringForKey:@"score"];
savedValue = score.text;
[super viewDidLoad];
}
I have no idea why the string is not getting displayed, the connections are all made. Any help would be great. Thanks!