Hi, i load my html from an sqlite database on iOS, and all the images relative to this HTML in downloaded on the device in the persistentdatapath.
Using
string ImageFolderPath = "file:/" + Application.persistentDataPath.Replace("/", "//").Replace(" ", "%20") + "/manualimages/";
WebViewObject.LoadHTML(myHtml, ImageFolderPath);
The html il loaded correctly, but i can't see any images, are a there a workaround for this?
thanks