views:

19

answers:

1

Hi.. Getting image data from sqlite database but not able to display in custom cell of imageview.is there any conversion of image data into image.

A: 

Super easy. There's a UIImage convenience method for exactly that.

//assuming the existence of an NSData *myData
UIImage *myImage = [UIImage imageWithData:myData];

So easy, in fact, I suspect that's not actually your question. If not, please clarify what you're asking.

Dan Ray