我尝试在我的应用中显示html
页面,但未在视图中显示:
NSArray *paths = NSSearchPathForDirectoriesInDomains( NSDocumentDirectory, NSUserDomainMask ,YES );
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"abt.html"];
NSURLRequest *documentsRequest = [NSURLRequest requestWithURL:
[NSURL fileURLWithPath:path]] ;
[_webview loadRequest:documentsRequest] ;
我点了这个链接:iOS - display content from an html resource file or remote webpage in a webview
由马特吉布森
请让我知道如何展示。
谢谢
答案 0 :(得分:0)
正如你所说,你的html页面在应用程序中,所以尝试这个,我已经使用过了,它的工作正常。
NSString *htmlFile=[[NSBundle mainBundle] pathForResource:@"abt" ofType:@"html"];
NSString *htmlString=[NSString stringWithContentsOfFile:htmlFile encoding:NSUTF8StringEncoding error:Nil];
[_webview loadHTMLString:htmlString baseURL:nil];