Reputation: 1588
I am using the UIWebView to load the URL. I want to know how to clear the Cookies in that .
Upvotes: 2
Views: 5916
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
Reputation: 8947
NSHTTPCookie *cooki;
NSHTTPCookieStorage *data = [NSHTTPCookieStorage sharedHTTPCookieStorage];
for (cooki in [data cookies]) {
[data deleteCookie:cooki];
}
Upvotes: 1