[ad_1]
NSArray *retrievedJTrans = [NSJSONSerialization JSONObjectWithData:response options:0 error:&jsonParsingError];
is a dictionary
what you might want
NSDictionary *retrievedJTransD = [NSJSONSerialization JSONObjectWithData:response options:0 error:&jsonParsingError];
NSArray *retrievedJTrans = retrievedJTransD[@"data"][@"translations"];
0
[ad_2]
solved -[__NSCFDictionary objectAtIndex:]: unrecognized selector sent to instance [duplicate]