在我的应用程序中,我有一个UIWebView,它可以加载不同的rtf文件。我使用此函数来加载这些文件:
- (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];
}
UIWebView什么都不显示。当我进入调试器时,文件字符串值是我需要的,但resourcePath和sourceFilePath值是“nil”。我做错了什么?
提前致谢!
答案 0 :(得分:1)
请尝试使用-pathForResource:ofType:
。
NSString* sourceFilePath = [[NSBundle mainBundle] pathForResource:file ofType:nil];