Knodel
Knodel

Reputation: 4389

UIWebview isn't displaying content I want it to display

In my app I have a UIWebView which loads different rtf files. I use this function to load these files:

- (void)loadFile:(NSString*)file
{
NSString* resourcePath = [[NSBundle mainBundle] resourcePath];
NSString* sourceFilePath = [resourcePath stringByAppendingPathComponent:file];
NSURL* url = [NSURL fileURLWithPath:sourceFilePath isDirectory:NO];
NSURLRequest* request = [NSURLRequest requestWithURL:url];
[webview loadRequest:request];
}

The UIWebView displays nothing. When I enter the debugger, the file string value is which I need, but resourcePath and sourceFilePath values are "nil". What am I doing wrong?

Thanks in advance!

Upvotes: 0

Views: 385

Answers (1)

kennytm
kennytm

Reputation: 523654

Try using -pathForResource:ofType: instead.

NSString* sourceFilePath = [[NSBundle mainBundle] pathForResource:file ofType:nil];

Upvotes: 1

Related Questions