gpt4 book ai didi

UiWebView如何在没有网络的状态下加载本地html

转载 作者:行者123 更新时间:2023-12-02 07:33:18 25 4
gpt4 key购买 nike

新手求助,听人说UiWebView可以加载本地的html文件,我有一个web应用html + js可以运行从网页上运行并想进入 ipad

有知道的请明示具体操作。非常感谢 stackoverflow 的第一篇帖子。

最佳答案

创建一个新的 Xcode 项目。将您的 html、javascript、css 等文件导入您的 Xcode 项目,Add file(s) to Xcode Project

Select your html, javascript, css, image, etc file(s)

将 UIWebView 添加到您的 XIB 或 Storyboard。 (至于我,我将其命名为 webView——见图) Add UIWebView and link and name it as you wish

然后在UIViewController委托(delegate)方法-(void)viewDidLoad

  • -(void)viewDidLoad { }

放这样的东西:

NSURL *rootURL = [[NSBundle mainBundle] URLForResource:@"index" withExtension:@"html"];
NSURLRequest *requestURL = [NSURLRequest requestWithURL:rootURL];
[self.webView loadRequest:requestURL];

运行您的项目进行测试。对于我来说,这是结果:Ran on iPhone Simulator

关于UiWebView如何在没有网络的状态下加载本地html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19679402/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com