Possible Duplicate:
How to delete all cookies of UIWebView?
Here i loading the content in html format and i need to delete all cookies and data in uiwebview, currently i have implemented these lines of code to delete the cookies but its some times working and not,why i do no...is there any error in my code
NSHTTPCookie *cookie;
NSHTTPCookieStorage *storage = [NSHTTPCookieStorage sharedHTTPCookieStorage];
for (cookie in [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies]) {
NSLog(@"%@", cookie);
[storage deleteCookie:cookie];
}