views:

95

answers:

1

sorry guys..i know i had been asking alot of question..but ironically few has given me solution, and so now i really need a solution to the final part of my app?how to i retrieve image from sqlite to be display in the uiimageview?with conversion...

NSData *imgData = [[NSData alloc] initWithBytes:sqlite3_column_blob(selectstmt, 3) length: sqlite3_column_bytes(selectstmt, 3)];           
            snap2playObj.snapImage = [UIImage imageWithData:imgData];

do i do it the normal way or do i need to convert it back to some string or something?kinda no clues..need some example or solution..and i wanna display it in my detailview

A: 

yeah but how do i retrieve it?that's more of storing it..which doesn't compile with error..i need to retrieve..argh!!

summer