Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to convert the binary to pdf file on iPhone?

I receive a binary pdf file, which is base64Binary encoded. How can I convert it back on the iPhone? What tool kits can I use?

Thanks.

like image 232
DNB5brims Avatar asked Feb 02 '26 15:02

DNB5brims


1 Answers

Solved:

NSData theData = [NSData dataWithData:[GTMBase64 decodeString:theBinary]]; //first transfer it to NSData.

[m_oTestingWeb loadData:theData
               MIMEType:@"application/pdf"
       textEncodingName:@"UTF-8"
                baseURL:nil];                   //using the web view to show it back
like image 143
DNB5brims Avatar answered Feb 05 '26 03:02

DNB5brims