is it possible to free memory of UIWebView?
i'm trying to release UIWebView object but it not free memory. is it have any reason? Maybe clearing the cache might help? See NSURLCache class. Just because you've released it doesn't mean that it can be released - maybe it's being used by something else? What is it's retain count after you have freed it? [myWebView release]; NSLog(@"%i", [myWebView retainCount]); If this number is not 0, someone else is retaining it as well and it can't be freed until they release it too (or it's set to be autoreleased so it will vanish at some point in the future). Another possibility is that the memory