1

The examples I have seen are geared towards C#.

Any tips would be appreciated.

Strong Like Bull
  • 11,155
  • 36
  • 98
  • 169
  • I think you need to be more precise with your question. A document can be anything, e.g. an image, a word document, a pdf, etc. So where's your actual problem? Don't you know how to decode base64 to binary, or do you need to see how to create multipage images, or what? – Thomas Tempelmann May 04 '11 at 21:58
  • Sorry about the confusing question. The document I am referring to is a fax (A PDF or a TIF) that could be multi page. I get on how to decode it. Just not sure how to have a mechanism to where a user could go through all the pages if needed. – Strong Like Bull May 05 '11 at 01:46

1 Answers1

4
UIImage* image = [UIImage imageWithData:
                  [NSData dataFromBase64EncodedString: stringBase64]];

Hope it helps. I don't know what you mean by "multipage UIImageView". The NSData category providing the dataFromBase64EncodedString method is here or here.

Community
  • 1
  • 1
Jano
  • 62,815
  • 21
  • 164
  • 192