Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using NSUserDefaults and I have the code mondayalarm = [prefs stringForKey:@"mondayalarm"]; and mondayalarm (first reference, not the key) is an NSDate. It's giving me the warning:

incompatible Objective-C types assigning 'struct NSString *', expected 'struct NSDate *'

How can i make it accept this without the warning?

share|improve this question

1 Answer

up vote 7 down vote accepted

To prevent the warning:

mondayalarm = (NSDate*)[prefs stringForKey:@"mondayalarm"];

To fix your problem:

mondayalarm = [prefs objectForKey:@"mondayalarm"];
share|improve this answer
1  
'You can accept this answer in 11 minutes.' But until then, thanks. – Andrew Jan 11 '11 at 0:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.