bit of a noob here. I haven't been able to solve my problem by reading these boards - can anyone spot a problem with this:
I have a label, which I would like to update daily, I've attempted this using NSUserDefaults.
-(id)init{
...
...
NSDate *date = [NSDate date];
NSString *todaysDate = [NSString stringWithFormat:@"%@", date];
[self createLabel:todaysDate];
}
-(void)createLabel:(NSString*)theDate{
if([[NSUserDefaults standardUserDefaults] objectForKey:theDate] == nil){
myLabel.text = [someOtherClass getAppropriateString];
[[NSUserDefaults standardUserDefaults] setObject:[mylabel text] forKey:theDate];
}else{
myLabel.text = [[NSUserDefaults standardUserDefaults] stringForKey:theDate]
}
}
EDIT:
Thanks for your help guys. While writing this question, I actually realised my mistake!
Just did a quick test.
If anyone's interested: the string from today's date included minutes and seconds, meaning each time I ran the app and saved it as NSUserDefault, it would be different.
I added a date formatter and it now works.
