I need to send cookies for login to a UIWebView, but when I load the web page the cookies haven\'t been sent.
My code is:
CorreoViewController.m
Comment this lines:
NSArray * cookies = [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies]; NSDictionary * headers = [NSHTTPCookie requestHeaderFieldsWithCookies: cookies]; [request setAllHTTPHeaderFields:headers];
the cookies are sent automatically. I hope this will serve you.