If I downloaded files in NSCachesDirectory programmatically in my app, is it also possible to delete the files programmatically?
If you want to delete specifically UIWebView cache then this could be helpful:
for(NSHTTPCookie *cookie in [[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies]) {
if([[cookie domain] isEqualToString:someNSStringUrlDomain]) {
[[NSHTTPCookieStorage sharedHTTPCookieStorage] deleteCookie:cookie];
}
}