How to convert a base64 encoded document into a multipage UIImageView in iOS?
The examples I开发者_开发知识库 have seen are geared towards C#.
Any tips would be appreciated.
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.
精彩评论