objective c send cookies to uiwebview

后端 未结 1 1401
一整个雨季
一整个雨季 2021-01-01 03:41

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

相关标签:
1条回答
  • 2021-01-01 04:16

    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.

    0 讨论(0)
提交回复
热议问题