Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to clean the content of UIWebView(in order to reuse it), but I have some authentication handling code in its delegate methods, so I do not want to load an empty page like about:blank to clean it, as it will trigger my authentication handling code. So is there a way for doing this? (also, by reusing it, I need to put a spinner on top of the web view, and when it loads another page, I don't want the user see the previous loaded page content, so that's why I need to clean it)

Thanks!

share|improve this question

4 Answers

up vote 15 down vote accepted

You can just use this line of code :

[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"about:blank"]]];

Hope this is what you want.

share|improve this answer
Yes I know this, but what I asked is a way without loading "about:blank" if you read my question. Thanks all the same! – hzxu Jun 6 '12 at 6:59
you can't do what you want you have to do like this there isn't any other way to do this. – Neel Jun 6 '12 at 7:00
1  
I think this should be marked as the answer. – neevek Aug 2 '12 at 6:14

this did the trick for me:

 [webView stringByEvaluatingJavaScriptFromString:@"document.open();document.close()"];
share|improve this answer

Try this out. This worked for me

[self.webView stringByEvaluatingJavaScriptFromString:@"document.body.innerHTML = \"\";"];
share|improve this answer

You can do

[webView removeFromSuperview];
webView = nil;

and then recreate your webView programatically

or set some kind of flag in your delegate method to not call your authentication handling code if "about:blank" is loaded

share|improve this answer
This is actually what I was thinking about. – hzxu Jun 6 '12 at 7:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.