Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My aim is to build a web application using UIWebView on iOS, basicly doing what BlackBerry do for Webworks.

After reading around I'm left unsure about how cache worked so i tried the following test:

Created simple web application with "Hello World" to begin.

Build & Ran the application - Worked fine

Then changed the login.html (thats what my hello world was called) The changes i made was i reaplced hello world with a hyperlink to another page.

When i Build&Run again the old page is still display.

So im assuming there's caching somewhere?

Is there anyway to do the following/whats best?

  • Disable caching as speed isnt important all our files are on disk?
  • Clear the cache every time we launch the application?

Has anyone encountered this before?

Thanks

I have tried: How to delete the cache from UIWebview or dealloc UIWebview

Another update ------

Tried another simple test, i deleted my HTML folder with all the html,css,js files in it so its now in trash. Ran the application again and delete html references from the project and it still loads them all perfect. So the whole thing is cached somewhere.

As another try i have also added:

-(void)dealloc{
    self.webView.delegate = nil;
    self.webView = nil;
    [webView release];
    [super dealloc];
}

In NativeViewController.m this did not help.

My applications code:`

#import "NativeViewController.h"

@implementation NativeViewController

@synthesize webView;

// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
[super viewDidLoad];

NSString *filePath = [[NSBundle mainBundle] pathForResource:@"login" ofType:@"html"];  
NSData *htmlData = [NSData dataWithContentsOfFile:filePath];  
if (htmlData) {  
    NSBundle *bundle = [NSBundle mainBundle]; 
    NSString *path = [bundle bundlePath];
    NSString *fullPath = [NSBundle pathForResource:@"login" ofType:@"html" inDirectory:path];
    [webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:fullPath]]];

}
}


- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];

// Release any cached data, images, etc that aren't in use.
}

- (void)viewDidUnload {
[self.webView removeFromSuperview];
self.webView.delegate = nil;
self.webView = nil;
}


 -(void)webViewDidFinishLoad{
[[NSURLCache sharedURLCahce] removeAllCachedResponses];
}
- (void)dealloc {
[webView release];
[super dealloc];
}
@end

`

share|improve this question
your .html file is in bundle? – Dhara Jan 17 at 9:32
Yes in the Build phases the folder containing all HTML files is there: it says "Copy bundle resources" "HTML" with blue folder icon then MainWindow.xib, NativeViewController.xib, MainWindow-iPad.xib – LmC Jan 17 at 9:35
in bundle means its added in your project? Do a thing reset simulator and then try – Dhara Jan 17 at 9:58
Deleted all html files from proejct and disk ran it and it still showed them – LmC Jan 17 at 10:16
Show the code how ur loading the html page – Dhara Jan 17 at 10:22
show 12 more comments

2 Answers

up vote 1 down vote accepted

Try this

if ([htmlData length]==0) {
//no data
}

This will not load the data if its length is 0. In other conditions even if you will remove the html file from your project it will be there in the simulator unless you do not reset it.

Hope it helps.

share|improve this answer
Yes..I encountered the same problem..      
I solved it by adding the below statement  in didFinishLaunchingWithOptions method of AppDelegate class

  [[NSURLCache sharedURLCache] removeAllCachedResponses];
share|improve this answer
Still sames to be showing my old html file... Even if i delete it from the bundle and harddisk and run the app its still there – LmC Jan 17 at 10:13
put that in webViewDidFinishLoad method and check once.. – Murali Jan 17 at 10:24
I dont understand what you mean my check once? – LmC Jan 17 at 10:25

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.