我正在学习编写一个ios原生webkit应用程序。在Xcode 3。x,我有index.html分布在资源文件夹和以下代码正常工作:
- (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。我错过什么了吗?请帮助。感谢Adrian 这是我的粗心。函数应该是viewDidLoad,而不是viewDidUnload。
谢谢。