UIWebview 没有显示我希望它显示的内容

发布于 2024-09-04 12:55:37 字数 528 浏览 6 评论 0原文

在我的应用程序中,我有一个 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”。我做错了什么?

提前致谢!

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!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

走过海棠暮 2024-09-11 12:55:37

尝试使用 -pathForResource:ofType: 代替。

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

Try using -pathForResource:ofType: instead.

NSString* sourceFilePath = [[NSBundle mainBundle] pathForResource:file ofType:nil];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文