Im having a ViewController on which on clicking a button, label gets updated. I want is, each time the app opens it should retain its old value. Im able to write every value in NSUserDefault but not getting how to write the value on label before the app loads.
Example:
In first run the label is having the value 5.
In second run the label should contain the same value 5, and if i made any changes that change should be there in third run.
Thanx...
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.
|
|
|||
|
|
|
Here's how to retrieve a stored value from
I'm assuming your button is already hooked up to an action something like this that will save the value to the standardUserDefaults when clicked:
|
|||||
|
|
In your AppDelegate, the very first method gets called after launching an App is,
and for other cases such as from inactive to active state of your application use,
I recommend Reading, Apple's iOS application lifecycle documentation. |
|||||
|