Helllo all,
in my app there is a story 1 hour i want to know if the user exit the app in the half (time) of the story or any time then when he return i want to continue from where he left
any idea will be great
thanks
Helllo all,
in my app there is a story 1 hour i want to know if the user exit the app in the half (time) of the story or any time then when he return i want to continue from where he left
any idea will be great
thanks
Have a look at NSUserDefaults to store data between runs of your app. i.e.
[[NSUserDefaults standardUserDefaults] setDouble:time forKey:@"time"];
to save and
double time = [[NSUserDefaults standardUserDefaults] doubleForKey:@"time"];
to get the time back again.