我想使用的代碼下面幾行加載一個HTML文件中的一個UIWebView中:如何加載的HTML文件中的圖像在一個UIWebView
NSString *htmlFile = [[NSBundle mainBundle] pathForResource:@"01Numbers" ofType:@"html"];
NSURL *url=[NSURL fileURLWithPath:htmlFile];
NSURLRequest *request=[NSURLRequest requestWithURL:url];
[WebView loadRequest:request];
我能夠加載HTML文件,但這個HTML文件還包含一些圖像,並且該圖像在視圖中不加載/可見,任何人都可以爲此提出任何解決方案?
[在UIWebView中使用HTML和本地圖像](http://stackoverflow.com/questions/747407/using-html-and-local-images-within-uiwebview) – MusiGenesis
http:// stackoverflow。 com/questions/747407/using-html-and -local-images-within-uiwebview –