iphone - 如何在 UIWebView 中加载带有 HTML 文件的图像
<p><p>我想使用以下代码行在 UIWebView 中加载 HTML 文件:</p>
<pre><code>NSString *htmlFile = [ pathForResource:@"01Numbers" ofType:@"html"];
NSURL *url=;
NSURLRequest *request=;
;
</code></pre>
<p>我能够加载 HTML 文件,但是这个 HTML 文件还包含一些图像,并且图像在 View 中没有加载/可见,任何人都可以为此提出任何解决方案吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>HTML 文件:</p>
<pre><code><HTML>
<HEAD>
<TITLE>My Web Page</TITLE>
</HEAD>
<BODY>
<img alt="" src="1.jpg" style="width: 100px; height: 100px;"/>
<P>This is where you will enter all the text and images you want displayed in a browser window.</P>
</BODY>
</HTML>
</code></pre>
<p>网页查看代码:</p>
<pre><code> NSString *htmlFile = [ pathForResource:@"desk" ofType:@"html"];
NSURL *url=;
NSURLRequest *request=;
;
</code></pre>
<p>截图:</p>
<p> <img src="/image/T9msU.png" alt="enter image description here"/> </p></p>
<p style="font-size: 20px;">关于iphone - 如何在 UIWebView 中加载带有 HTML 文件的图像,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/11169763/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/11169763/
</a>
</p>
页:
[1]