gpt4 book ai didi

ios - 为什么路径在 Xcode 4.2 中不起作用?

转载 作者:行者123 更新时间:2023-11-29 04:56:33 25 4
gpt4 key购买 nike

我正在学习编写 iOS 原生 webkit 应用程序。在 Xcode 3.x 中,我将 index.html 分布在 Resources 文件夹中,并且以下代码可以正常工作:

- (void)viewDidUnload
{
[super viewDidUnload];
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"];
NSData *htmlData = [NSData dataWithContentsOfFile:filePath];
if (htmlData)
{
NSBundle *bundle = [NSBundle mainBundle];
NSString *path = [bundle bundlePath];
NSString *fullPath = [NSBundle pathForResource:@"index" ofType:@"html" inDirectory:path];
[webView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:fullPath]]];
}
}

当我在 Xcode 4.2 上创建项目时,index.html 未加载。我在“支持文件”文件夹中有index.html。我错过了什么吗?请帮忙。

谢谢

阿德里安

最佳答案

是我的粗心。该函数应该是viewDidLoad,而不是viewDidUnload。

谢谢。

关于ios - 为什么路径在 Xcode 4.2 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7865388/

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