gpt4 book ai didi

iphone - UIWebview中本地html文件加载

转载 作者:行者123 更新时间:2023-12-03 20:21:07 24 4
gpt4 key购买 nike

我的 xcode 项目中有一个本地 html 文件。但我无法使用 UIWebView 加载本地 html 文件。

最佳答案

实现您的请求的代码是:

UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 
self.view.frame.size.height,self.view.frame.size.width)];

NSString *indexPath = [NSBundle pathForResource:@"index" ofType:@"html" inDirectory:nil];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:indexPath]]];
[self.view addSubview:webView];

关于iphone - UIWebview中本地html文件加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6357569/

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