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

时间:2011-03-05 05:50:41

标签: iphone html xcode

谁能告诉我如何在我的iphone项目中添加html? 并且他们没有html选项,我点击在类组中添加新文件...为什么是???

3 个答案:

答案 0 :(得分:7)

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

假设您要加载名为page.html的本地文件,首先将文件添加到项目,在项目的构建阶段,将page.html添加到Copy Bundle Resources,然后在您的应用,它会将文件写入您的应用的documents词典/

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"]]]];

已经完成了。

答案 1 :(得分:0)

您可能正在寻找的是UIKit的UIWebView类的文档和示例代码。

答案 2 :(得分:0)

您可以使用UIWebView来显示您的html文件

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:URLString]];
[webView loadRequest:request];

其中URLString包含的是您的文件网址。