I am able to use the JavaScript evaluating string to extract the document.title or document.body.innerText, but is there a way i can extract the image from the document as well?
Try googling "uiwebview extract image"... unless you already got an answer from the other forum -- your post comes up as second hit on that search string
I am able to use the JavaScript evaluating string to extract the document.title or document.body.innerText, but is there a way i can extract the image from the document as well?
get the image's URL (which should be trivial if you can access the documents DOM) and download it. (+[NSData dataWithContentsOfURL:] and then create an UIImage with that data)