I use the Afnetworking Framework in my project, but I get the answer in a lowercase format. I want to get the value "Data" in the answer below -
"{\"Result\":\"Success\",\"Data\":\"intro-1898-1449000428650.mp4\"}"
I used the following code:
[Helper PostWebServiceRequest:kIntrovideo InputParameters:parameters competion:^(BOOL result, NSDictionary *response) { if (result){ NSLog(@"response : %@",response); NSString *data= [NSString stringWithFormat:@"%@",response ]; NSError *jsonError; NSData *objectData = [data dataUsingEncoding:NSUTF8StringEncoding]; NSDictionary *json = [NSJSONSerialization JSONObjectWithData:objectData options:NSJSONReadingMutableContainers error:&jsonError];
source share