2017-10-30 9 views

答えて

0

この文字列をHTMLのbodyタグの下に挿入し、.htmlファイルを作成するだけです。ウェブビューで

読むHTMLファイルとロード:私はhtmlタグの下に挿入すると

NSString *htmlFile = [[NSBundle mainBundle] pathForResource:@“sample” ofType:@“html” inDirectory:nil]; 
NSString* htmlString = [NSString stringWithContentsOfFile:htmlFile encoding:NSUTF8StringEncoding error:nil]; 
[webView loadHTMLString:htmlString baseURL: [[NSBundle mainBundle] bundleURL]]; 
+0

おかげで、それは動作します。 – zcat

関連する問題