1

当我加载嵌入了 SWF 的外部 HTML 时,它在 UIWebView 中工作。
当我尝试在 Xcode 中添加所有文件并在本地加载 UIWebView 时,什么都没有出现,但我知道它试图加载......
- 代码:

NSString *filePath =
[[NSBundle mainBundle] pathForResource:@"vimmar" ofType:@"html"];
NSData *htmlData = [NSData dataWithContentsOfFile:filePath];

if (htmlData)
{
    NSBundle *bundle = [NSBundle mainBundle];
    NSString *path = [bundle bundlePath];
    NSString *fullPath = [NSBundle pathForResource:@"vimmar"
                                            ofType:@"html" inDirectory:path];
    [pagina_web_local loadRequest:[NSURLRequest requestWithURL:
                          [NSURL fileURLWithPath:fullPath]]];
}
else
{
    NSLog(@"No data for you...");
}

-这里是 HTML

<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 
  <title>Default</title>
  <meta name="viewport" content="target-densitydpi=device-dpi, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
  <meta name="apple-mobile-web-app-capable" content="yes"/>
  <style type="text/css">
    @media only screen and (min-device-width: 800px) { html { overflow:hidden; } }
    * { padding: 0; margin: 0; }
    html { height: 100%; }
    body { height: 100%; overflow:hidden; }
    #container { height: 100%; min-height: 100%; width: 100%; margin: 0 auto; }
  </style>
  </head>
  <body>
  <script src="swfobject/swfkrpano.js"></script>
  <div id="container">
    <div id="panoDIV" style="height:100%;">
    <script>
      embedpano({target:"panoDIV",swf:"vimmar.swf"});
    </script>
      <noscript>
        <div id="tour">
          <object width="100%" height="100%">
            <embed src="vimmar.swf" width="100%" height="100%" allowFullScreen="true"></embed>
          </object>
        </div>
      </noscript>
    </div>
  </div>
 </body>
 </html>

不知道是不是和苹果不接受SWF有关。但如果不是,为什么要带在外面?你同意?

不是因为缺少添加文件。JS 或其他,因为我在这里找到了一个加载有问题的工作人员。JS 被阅读并且有用,但没有找到 SWF。

谢谢你。

4

3 回答 3

3

我怀疑 Apple 不会构建JavaScript和处理 HTML 中的嵌入SWF文件。

所以我寻找了一种webservice在 iOS 中创建一个方法来编译和运行SWF这里需要的 ( https://github.com/robbiehanson/CocoaHTTPServer/ )。
SWF 文件不是纯文件,它会编译并转换为 HTML 可接受的格式。XCode本来就没有的东西。所以,我得到了我们需要的结果。

如果有人需要,这就是解决方案,创建一个小型 Web 服务来编译 javascript 和服务器要处理的其他内容,并以 HTML 显示最终结果。

于 2012-08-13T22:34:08.010 回答
1

我无法理解您的问题 - 但 Flash无法在 UIWebView 中工作。如果您在 Safari 中浏览特定网站,并且它似乎可以正常工作,则该网站可能正在提供 HTML5 版本。

于 2012-08-13T21:54:28.650 回答
1

iOs 严格不支持任何包含 swf 的 flash 项目。

原因: 1)闪存耗尽了要运行的电池,必须解码 swf 解码应该在硬件级别而不是在软件级别,不幸的是 5o % 的闪存项目百分比(不是最新的)导致使用软件级别解码

2)导致安全漏洞,即使 mcaFee 也声称上述漏洞是关键的

3) 应用程序崩溃:flash 是 mac 中应用程序崩溃的第一大原因

4)易于开发:Mac 不希望他们的开发人员专注于第三方项目,第三方不会为特定平台定制,最终将是跨平台的。

5) 经济原因:在 ios 上允许 flash 将与应用商店竞争。

所以出于上述原因 ios 不支持 flash

如果您想要任何图表的 flash,您可以通过以下链接

http://blog.fusioncharts.com/2012/02/create-charts-for-iphone-and-ipad-apps-using-fusioncharts-xt/ http://docs.fusioncharts.com/charts/contents/FirstChart/ UsingPureJS.html http://docs.fusioncharts.com/charts/contents/index.html?FirstChart/UsingPureJS.html

于 2013-04-09T17:02:10.993 回答