-2

我有一个UIWebView,我只是显示一些文本。我正在使用 html 文本来格式化UIWebView. 我怎样才能image/UIImage在其中包含一个?我需要显示具有固定框架的图像。

4

1 回答 1

5

使用img标签。将其注入您的 HTML 代码并以UIWebView.

这应该有帮助 -

NSString *html = @"<html><body style='margin:0;'><img width='300' height='300' src='my_test_image.jpg'></body></html>";
[web loadHTMLString:html baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]];
于 2012-07-04T10:58:15.390 回答