gpt4 book ai didi

xcode - loadHTMLString baseURL :nil not working in iOS5

转载 作者:行者123 更新时间:2023-12-04 13:05:32 25 4
gpt4 key购买 nike

我遇到了 UIWebView 的问题。我想在 UIWebView 中呈现我自己的 html 代码。

如果我使用下面的代码,它工作正常。

    NSBundle *thisBundle = [NSBundle mainBundle];
NSString *path = [thisBundle pathForResource:@"foo" ofType:@"html"];
NSURL *baseURL = [NSURL fileURLWithPath:path];
[self.webView loadHTMLString:@"foo.html" baseURL:baseURL];

我想用下面的代码呈现 html。但它不起作用。 foo.html 包含与 NSString* 完全相同的内容。任何提示?提前致谢。 =)
    NSString* one = @"<html><head><title></title></head><body><img src=\"image.jpg\"/></body></html>";
[self.webView loadHTMLString:one baseURL:nil] ;

最佳答案

我使用这个完美的代码:

NSString* htmlContent = @"<html><head><title></title></head><body><img src='image.jpg' /></body></html>";
[self.webView loadHTMLString:htmlContent baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]];

请确保 image.jpg 包含在您的项目中。

关于xcode - loadHTMLString baseURL :nil not working in iOS5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7981083/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com