菜鸟教程小白 发表于 2022-12-12 19:23:51

objective-c - 如何在 iOS 应用程序中从 NSURLRequest 修改 cookie


                                            <p><p>您好,我需要修改一个 cookie,但我正在 iOS 中开发,有人知道如何更改它。也许在 UIWebViewDelegate 中带有 webView:shouldStartLoadWithRequest:navigationType:??</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>由于IOS不支持WebKit.framework,最好的方法是使用UIWebView shouldStartLoadWithRequest和webViewDidFinishLoad的事件,我使用NSHTTPCookieStorage类作为cookie,并修改如下</p>

<pre><code>NSHTTPCookieStorage *sharedHTTPCookieStorage = ;
NSArray *cookies = ];
NSEnumerator *enumerator = ;
NSHTTPCookie *cookie;
while (cookie = )
{
    if ([ isEqualToString:key])
    {
      NSString *actcookie = ;
      NSMutableString *newcookiestring = ;
      NSMutableDictionary *propscook = [ initWithDictionary: ];
      ;
      NSHTTPCookie *newcookie = ;

      ;

      return ;
    }
}
return nil;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 如何在 iOS 应用程序中从 NSURLRequest 修改 cookie,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9321293/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9321293/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 如何在 iOS 应用程序中从 NSURLRequest 修改 cookie