vote up 1 vote down star

I have a bunch of images stored in my database as blobs that I need to include in a UIWebView. I'd like to do this directly -- without first saving them as temp files. Is there a way to display images in UIWebView with raw data instead of a URL?

flag

75% accept rate

2 Answers

vote up 2 vote down check

Use RFC 2397, the data URI scheme. Mark Kolich has a nice write-up for it in various contexts. He mostly is discussing CSS, but HTML is the same (and he gives an HTML example).

link|flag
vote up 0 vote down

I assume on the iPhone WebKit still loads URLs through the Cocoa URL loading system. If so, the best approach is for you to subclass NSURLProtocol and create your own custom scheme that loads data from your database. Bear in mind that this will be on a background thread, so watch out for thread safety.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.