我有UIWebView
,我只是显示一些文字。我使用html文本格式化UIWebView
。如何在其中加入image/UIImage
?我需要显示一个固定帧的图像。
答案 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]]];