Displaying issue in Webview
- by milanjansari
Hello,
i did save png and pdf file in Sqlite successfully. but when i retrive png and pdf data from sqlite and trying to display in Webview its create a problem.
for exp
NSData *data = [[NSData alloc] initWithBytes:sqlite3_column_blob(selectstmt, 1) length:sqlite3_column_bytes(selectstmt, 3)];
[webview loadData:data MIMEType:@"image/png"…