很长一段时间以来,一直在向 Xcode 添加文件,并且一直在“组”中组织它们。一切似乎都按预期工作。但最近我添加了一个文件夹来测试一个带有 2 个 png 图像的 html 文件。html 文件可以引用第二个 png 图像,但第一个 png 图像只是拒绝被识别。
我认为 Xcode 文件夹一定有一些我错过的东西。
希望有懂行的能帮忙...
<center><img src="first_button.png" ></center>
<left><H4>The button is located at the bottom of the screen.
</H4>
<BR>
<center><H3>
Another button description
</H3>
</center>
<center><img src="A_icon_11_red.png" width="45" height="45"></center>
<BR>
如果输入 Safari,上述运行完全正常。但是 UIWebView 会错过第一个 png 图像。另一个有趣的点是,当我将两个 png 文件名都更改为 A_icon_11_red.png 时,一切都会按预期出现。所以我认为这与将 first_button.png 添加到项目中的方式有关。
关于捆绑目录,我有以下...
if ((f_path = [bundle pathForResource : @"about_screen"
ofType : @"html"
inDirectory : @"about_html"]) != nil)
{
// additional lines ...
}