如何在UIWEbview中显示html数据或CData?

时间:2010-01-28 06:34:50

标签: iphone

我从服务器获得的数据就像'我的名字是& nbsp john'。我希望在UIWebView中显示“我的名字是约翰” 如何显示?

2 个答案:

答案 0 :(得分:1)

尝试使用- loadHTMLString:baseURL:方法。

答案 1 :(得分:0)

加载远程html文件:

[webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.apple.com"]]];

加载本地html文件:

[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"]isDirectory:NO]]];

加载html字符串:

[webView loadHTMLString:@"<img src=test.png>" baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]];