通过文件共享加载时,iOS 应用程序中的 UIWebView 无法看到 JavaScript
在我的 iOS 应用程序中,我有一种方法可以让用户通过 iTunes/Apps 选项卡/文件共享来安装 zip 文件。 zip 文件包含 HTML/CSS/JavaScript。应用程序解压缩文件,index.html 文件加载到 UIWebView 中。这很好用。
我知道当您将 JavaScript 文件与 HTML/CSS 文件一起添加到 XCode 中的 Resources 文件夹中时,在编译之前,您需要将 JavaScript 文件从 Compile Resources 文件夹移动到 Copy Bundle Resources 文件夹中,否则 HTML 无法找到 JavaScript 文件。
对于我通过 iTunes 文件共享加载的资源,HTML 文件似乎找不到 JavaScript 文件。通过文件共享添加文件以使 HTML 使用 JavaScript 文件时,我还需要做什么?
TIA, 琳达
In my iOS app, I have a way for the User to install a zip file through iTunes/Apps Tab/File sharing. The zip file contains HTML/CSS/JavaScript. The app unzips the file and index.html file is loaded in a UIWebView. This works fine.
I know when you add JavaScript files along with HTML/CSS files into the Resources folder in XCode, before compiling you need to move the JavaScript files from the Compile Resources folder into the Copy Bundle Resources folder or the HTML cannot find the JavaScript file.
For the resources that I am loading through iTunes File Sharing, it appears that the HTML files cannot find the JavaScript files. What else do I need to do when adding the files through File Sharing in order for the HTML to use the JavaScript file?
TIA,
Linda
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜测您用来显示 HTML 内容的 UIWebView 加载方法的
baseURL
参数设置不正确。我会尝试将baseURL
设置为指向包含解压资源的文件夹的文件 URL,也许使用NSBundle
的- (NSURL *)URLForResource:(NSString * )name withExtension:(NSString *)extension
方法,或类似的东西。I would guess the
baseURL
parameter of whichever UIWebView load method you're using to display the HTML content is being set incorrectly. I would try settingbaseURL
to the file URL pointing to the folder containing the unzipped assets, perhaps usingNSBundle
's- (NSURL *)URLForResource:(NSString *)name withExtension:(NSString *)extension
method, or something similar.