在UIWebView中添加图像

时间:2012-07-04 10:53:58

标签: iphone ios uiwebview uiimageview

我有UIWebView,我只是显示一些文字。我使用html文本格式化UIWebView。如何在其中加入image/UIImage?我需要显示一个固定帧的图像。

1 个答案:

答案 0 :(得分: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]]];