I\'ve an extremely weird problem, I\'m requesting a URL and I want to get the cookies from it, I\'ve used this way to get the cookies:
- (void)connection:(NS
Try this code:
for (NSHTTPCookie *cookie in [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies]) { NSLog(@"name: '%@'\n", [cookie name]); NSLog(@"value: '%@'\n", [cookie value]); NSLog(@"domain: '%@'\n", [cookie domain]); NSLog(@"path: '%@'\n", [cookie path]); }