2010-12-12 68 views
0

我想用顯示在一個UIWebView本地HTML字符串內容如下:UIWebView的loadHTMLString:基本URL方法不起作用

[webView loadHTMLString:value baseURL:[NSURL fileURLWithPath:[[NSBundle mainBundle] bundlePath]]]; 

我不知道發生了什麼錯,但Web視圖保持白色

感謝對幫助

+1

請公關歡迎您的代碼。 – Developer 2010-12-13 05:57:53

回答

1

試試這個

NSString *html = [[NSString alloc] initWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"document" ofType:@"html"]]; [webView loadHTMLString:html baseURL:nil];

相關問題