如何在我的iphone xcode项目中添加html页面?

前端之家收集整理的这篇文章主要介绍了如何在我的iphone xcode项目中添加html页面?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
谁能告诉我如何在我的 iphone项目中添加html?
并且他们没有html选项我点击在类组中添加文件…为什么?

解决方法

只需创建一个空白文件并将其重命名为html或将现有的html文件添加到项目中.
下一步取决于您希望如何使用html文件.

假设您要加载名为page.html的本地文件,首先将文件添加到项目中,并在项目的构建阶段,将page.html添加到Copy Bundle Resources,并在应用程序中运行此文件,它会写入文件到你的应用程序的文档字典/

NSString *Html = [[NSString alloc]initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"page" ofType:@"html"] encoding:NSUTF8StringEncoding error:NULL];
[Html writeToFile:[[self docPath]stringByAppendingPathComponent:@"page.html"] atomically:YES encoding:NSUTF8StringEncoding error:NULL];
[Html release];

并且你的webview应该调用它来加载文件

NSArray *docPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
NSString *docPath = [docPaths objectAtIndex:0];
[myWebView loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:[docPath stringByAppendingPathComponent:@"page.html"]]]];

它已经完成了.

猜你在找的Xcode相关文章