55

I am going to use NSHTTPCookieStorage in an iOS App to manage cookies that are retrieved from a url, and I understand that it will manage cookies during your application's runtime. However, I was wondering if it's possible to persist cookies after the application has closed. And then read those cookies again when the app is opened again. Does NSHTTPCookieStorage persist cookies between app uses? Or just during the applications runtime? Do I need to use CoreData to persist these cookies?`

Chris Hanson
  • 54,380
  • 8
  • 73
  • 102
Alex
  • 64,178
  • 48
  • 151
  • 180

2 Answers2

117

You shouldn't need to persist the cookies yourself as suggested in the other answer. NSHTTPCookieStorage will persist the cookies for you but you need to ensure that the cookies have an expiry date set on the server-side.

Cookies without an expiry date are considered 'session only' and will get cleared when you restart the app. You can check the 'session only' situation via a BOOL property in NSHTTPCookie. This is standard cookie stuff and not something specific to iOS.

gazreese
  • 1,213
  • 2
  • 8
  • 5
  • 1
    Came here looking for this clarity, thanks. Interesting that it's cleared when the app is restarted. You can restart Chrome on desktop and still have a session open. – Dan2552 Mar 28 '13 at 00:29
  • +1 I understand now why my cookies are no more there :). Thanks !! – Niko Aug 02 '13 at 08:00
  • 1
    You saved me a lot of time! Thanks! – dev gr Feb 19 '15 at 08:22
  • @gazreese I am trying to encrypt the cookie files in iOS cordova application. Its working but only when app is in foreground. When I switch the app or press home button, new cookie file is created with same data. Can anybody guide me how I can encrypt the cookie files? – Rahul Apr 29 '16 at 19:21
  • You made my day, thankyou! – larva Oct 25 '21 at 09:38
46

You need to re-set the cookies when your app is loaded. I use code like this:

NSData *cookiesdata = [[NSUserDefaults standardUserDefaults] objectForKey:@"MySavedCookies"];
if([cookiesdata length]) {
    NSArray *cookies = [NSKeyedUnarchiver unarchiveObjectWithData:cookiesdata];
    NSHTTPCookie *cookie;

    for (cookie in cookies) {
        [[NSHTTPCookieStorage sharedHTTPCookieStorage] setCookie:cookie];
    }
}

and it works just fine.

Magnus
  • 2,016
  • 24
  • 32
  • 2
    Is `MySavedCookies` already there? Or do I have to store that when my app is about to go inactive? – Alex Jan 04 '11 at 20:05
  • 1
    You have to save it yourself - It's just where I save mine. – Magnus Jan 04 '11 at 22:08
  • 4
    Storing cookies in user defaults may be a security flaw as all plist can be accessed via tools like iFunBox etc. They should be encrypted but the best behavior is to follow @gazreese answer. – Gianluca P. Mar 04 '14 at 09:00