Convert Base64 to Zip file.

Hi, I am working on converting base 64 file format to zip file some of the zip files are getting converted successfully but some of them are not converting.

Stetps:

  1. Getting base64 format from server.
  2. Converting into NSData.

 NSData *dataEncoded = [[NSData alloc] initWithBase64EncodedString:output.base64Content options:0];

  1. Writing this file into local memory and then accessing it.

I am able to access some zip file like this way but some are getting corrupted.

Please help me on this!

Convert Base64 to Zip file.
 
 
Q