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.

How do I store a number, may be an integer, so it is back to use next session. Suppose one can use NSUserdefaults is some way but don“t know how. If I want to add a value to the already stored number.

share|improve this question

1 Answer

up vote 1 down vote accepted

You can save Integer value like:

  NSUserDefaults *setObj = [NSUserDefaults standardUserDefaults];
  [setObj setValue:[NSNumber numberWithInt:100] forKey:@"Integer"];
  [setObj synchronize];

Get Integer value from NSUserDefaults

  NSUserDefaults *getObj = [NSUserDefaults standardUserDefaults];
  int Number = [((NSNumber*)[getObj objectForKey:@"Integer"]) intValue];
share|improve this answer
Thank you. Exact what I needed. Works ok. – Lars - Jan 22 at 16:23

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.