Here is JSON file
https://drive.google.com/file/d/1WOE6HEylc5FnAo9NekMdwPU3xEuGUgMg/view?usp=sharing
I am getting this JSON data, I am trying to print JSON but it is not printing full JSON.
Inside JSON, there is one key "file", it contains base64 encoded data. Its value is very large.
I am trying to print the whole JSON or only value for a key "file" but I am getting incomplete data.
I do not know, why I am getting half data.
Here is the code I wrote,
NSMutableArray *mutableArray=[json copy];
NSDictionary *threadDict=[mutableArray objectAtIndex:indexPath.row];
NSLog(@"Ticket Thread Dict is : %@",threadDict);// It is not printing full json
NSMutableArray *attachmentArray=[[NSMutableArray alloc]init];
attachmentArray =[threadDict objectForKey:@"attach"];
NSDictionary *attachDictionary=[attachmentArray objectAtIndex:indexPath.row];
NSString *fileData = [NSString stringWithFormat:@"%@", [attachDictionary objectForKey:@"file"]];
NSLog(@"Fina Name is : %@",fileData); // this is not printing full data