菜鸟教程小白 发表于 2022-12-13 14:20:24

iphone - 如何在 UIWebView 中加载带有 HTML 文件的图像


                                            <p><p>我想使用以下代码行在 UIWebView 中加载 HTML 文件:</p>

<pre><code>NSString *htmlFile = [ pathForResource:@&#34;01Numbers&#34; ofType:@&#34;html&#34;];
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>&lt;HTML&gt;
&lt;HEAD&gt;
&lt;TITLE&gt;My Web Page&lt;/TITLE&gt;
&lt;/HEAD&gt;
&lt;BODY&gt;
&lt;img alt=&#34;&#34; src=&#34;1.jpg&#34; style=&#34;width: 100px; height: 100px;&#34;/&gt;
&lt;P&gt;This is where you will enter all the text and images you want displayed in a browser window.&lt;/P&gt;
&lt;/BODY&gt;
&lt;/HTML&gt;
</code></pre>

<p>网页查看代码:</p>

<pre><code> NSString *htmlFile = [ pathForResource:@&#34;desk&#34; ofType:@&#34;html&#34;];
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]
查看完整版本: iphone - 如何在 UIWebView 中加载带有 HTML 文件的图像