uiwebview memory leaks
Posted
by Nnp
on Stack Overflow
See other posts from Stack Overflow
or by Nnp
Published on 2010-04-15T19:50:51Z
Indexed on
2010/04/15
19:53 UTC
Read the original article
Hit count: 827
i am getting following memory leaks for webview
initWebUILocalStorageSupport
MobileQuickLookLibrary()
and here is my code, i dont know what i am missing.
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestReloadIgnoringCacheData timeoutInterval:10.0f];
[theRequest setHTTPMethod:@"POST"];
NSData *data = [self GenerateData];
if (data) {
[theRequest setHTTPBody:data];
}
[webView loadRequest:theRequest];
i hope my question is clear.thanks
© Stack Overflow or respective owner