Hi,
I added one html file, inside html some .css files are added. I added the below code to display the html files in webview.
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 768, 960)];
[webView setDelegate:self];
NSString *pathToBundle = [[NSBundle mainBundle] bundlePath];
NSLog(@"path is %@",pathToBundle);
NSURL *baseURL = [NSURL fileURLWithPath

athToBundle];
NSString *pathToFile = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"];
NSLog(@"file path is %@ %@",pathToFile,baseURL);
NSString *htmlFileToDisplay = [[[NSString alloc] initWithContentsOfFile

athToFile] autorelease];
NSLog(@"html is %@",htmlFileToDisplay);
[webView loadHTMLString:htmlFileToDisplay baseURL:baseURL];
here index.html is one html file inside which contains .css file, i want to read this .css files whoch is there in resource folder. But my code is not workig,Please help me in this.