如何解析 JSON 数组soap响应字符串中的soap响应:-
NSString *string=@"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\ "http://www.w3.org/2001/XMLSchema\">http://tempuri.org/\">[{\"rest_id\": 1, \"rest_name\": \"canteen 21\" , \"rest_address\": \"janakpuri\",\"clientid\": 1, \"rest_lat\": \"28.619713\",\"rest_long\": \"77.088404}]";
NSData *webData = [string dataUsingEncoding:NSASCIIStringEncoding];
NSError *e = nil;
NSArray *jsonArray = [NSJSONSerialization JSONObjectWithData: webData options: NSJSONReadingAllowFragments error: &e];