Skip to content

Instantly share code, notes, and snippets.

@sey
Created November 10, 2012 15:35
Show Gist options
  • Save sey/4051409 to your computer and use it in GitHub Desktop.
Save sey/4051409 to your computer and use it in GitHub Desktop.
debugCookies
+ (void)debugCookies
{
NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
[storage setCookieAcceptPolicy:NSHTTPCookieAcceptPolicyAlways];
NSArray *cookies = [storage cookies];
for (NSHTTPCookie *cookie in cookies)
{
NSLog(@"cookie: %@", cookie);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment