嘿伙计们我最近一直在使用html和javascript开发移动应用程序并且它很好但现在我想将html文件嵌入到xcode项目中,这样我就可以在我的iphone上运行它而无需使用phonegape但是没有运气......
i tried viewing some video tutorial reading some articles but not one worked with me ...
所以任何人都可以告诉我(详细的一步一步)如何做到这一点。 附:我是xcode的新手,我只用了几天。
答案 0 :(得分:2)
你可以使用xcode在uiwebview中打开本地html文件这里有一个示例,它将该文件转换为字符串,然后将其加载到uiwebview
NSString *htmlStr = [[NSBundle mainBundle] pathForResource:@"yourfilename" ofType:@"html"];
NSString* htmlString = [NSString stringWithContentsOfFile:htmlStr encoding:NSUTF8StringEncoding error:nil];
[webView loadHTMLString:htmlString baseURL:nil];
希望它能帮到你