problem with Image in custom Cell
Getting image data from sqlite database but not able to display in custom cell 开发者_Python百科of imageview.is there any conversion of image data into image.
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.
精彩评论