Perseus
Perseus

Reputation: 1588

How to clear the Cookies in UIWebView

I am using the UIWebView to load the URL. I want to know how to clear the Cookies in that .

Upvotes: 2

Views: 5916

Answers (2)

Brandon Schlenker
Brandon Schlenker

Reputation: 5088

You can go through each cookie in the cookie jar and remove them.

How to delete all cookies of UIWebView?

NSHTTPCookie *cookie;
NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
for (cookie in [storage cookies]) 
{
   [storage deleteCookie:cookie];
}

Upvotes: 15

Saad
Saad

Reputation: 8947

NSHTTPCookie *cooki;
NSHTTPCookieStorage *data = [NSHTTPCookieStorage sharedHTTPCookieStorage];
for (cooki in [data cookies]) {
   [data deleteCookie:cooki];
}

Upvotes: 1

Related Questions