菜鸟教程小白 发表于 2022-12-13 08:12:23

ios - 在 Web View 中显示图像


                                            <p><p>我尝试在我的 webView 背景中显示图像,但里面有一个蓝色的小矩形和一个询问标记。我的代码是这样的:</p>

<pre><code>NSString *myDescriptionHTML = [NSString stringWithFormat:@&#34;&lt;html&gt; \n&#34;
                                 &#34;&lt;head&gt; \n&#34;
                                 &#34;&lt;style type=\&#34;text/css\&#34;&gt; \n&#34;
                                 &#34;body {font-family:helvetica; font-size:12;}\n&#34;
                                 &#34;h2 {font-family:Times new roman;color: #105870}&#34;
                                 &#34;&lt;/style&gt; \n&#34;
                                 &#34;&lt;/head&gt; \n&#34;
                                 &#34;&lt;body&gt;&lt;img src=\&#34;background.png\&#34; /&gt;&lt;h2&gt;Nom station&lt;/h2&gt;%@&lt;h2&gt;Adresse&lt;/h2&gt;%@&lt;h2&gt;Tél&lt;/h2&gt;%@&lt;h2&gt;Sens de circulation&lt;/h2&gt;%@&lt;h2&gt;Voie&lt;/h2&gt;%@&lt;h2&gt;Station de lavage&lt;/h2&gt;%@&lt;h2&gt;Commerce&lt;/h2&gt;%@&lt;h2&gt;Distance&lt;/h2&gt;%@&lt;h2&gt;Types de carburants&lt;/h2&gt;%@&lt;/body&gt;\n&#34;
                                 &#34;&lt;/html&gt;&#34;,leNomDeLaStation,adresseDeLaStation,telDeLaStation,circulationDeLaStation,voieDeLaStation,lavageDeLaStation,commerceDeLaStation,distanceDeLaStation,typesDeCarburantsDeLaStation];
    ;
</code></pre>

<p>除了 <code>background.png</code> 之外,我的所有文本都正确显示。感谢您的帮助:)</p>

<p><strong>编辑:</strong>
我试过这个:</p>

<pre><code>NSString* basePath = [ bundlePath];
    NSURL *url = ;
    NSString *myDescriptionHTML = [NSString stringWithFormat:@&#34;&lt;html&gt; \n&#34;
                                 &#34;&lt;head&gt; \n&#34;
                                 &#34;&lt;style type=\&#34;text/css\&#34;&gt; \n&#34;
                                 &#34;body {font-family:helvetica; font-size:12;}\n&#34;
                                 &#34;h2 {font-family:Times new roman;color: #105870}&#34;
                                 &#34;&lt;/style&gt; \n&#34;
                                 &#34;&lt;/head&gt; \n&#34;
                                 &#34;&lt;body&gt;&lt;img src=\&#34;background.png\&#34; /&gt;&lt;h2&gt;Nom station&lt;/h2&gt;%@&lt;h2&gt;Adresse&lt;/h2&gt;%@&lt;h2&gt;Tél&lt;/h2&gt;%@&lt;h2&gt;Sens de circulation&lt;/h2&gt;%@&lt;h2&gt;Voie&lt;/h2&gt;%@&lt;h2&gt;Station de lavage&lt;/h2&gt;%@&lt;h2&gt;Commerce&lt;/h2&gt;%@&lt;h2&gt;Distance&lt;/h2&gt;%@&lt;h2&gt;Types de carburants&lt;/h2&gt;%@&lt;/body&gt;\n&#34;
                                 &#34;&lt;/html&gt;&#34;,leNomDeLaStation,adresseDeLaStation,telDeLaStation,circulationDeLaStation,voieDeLaStation,lavageDeLaStation,commerceDeLaStation,distanceDeLaStation,typesDeCarburantsDeLaStation];
    ;
</code></pre>

<p>我总是在那里得到询问标记:(</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要在以下位置指定正确的 <code>baseURL</code>:</p>

<pre><code>;
</code></pre>

<p>否则 webView 将不知道在哪里寻找你的“相对”uris(不以 http://开头的那些)</p>

<p>试试这个:</p>

<pre><code>NSString* basePath = [ bundlePath];
];
</code></pre>

<p>编辑:仔细检查您的项目资源中是否包含 <code>background.png</code> 以及文件名是否正确。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 WebView 中显示图像,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/6579109/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/6579109/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 Web View 中显示图像