- (NSString *)countryNameByCode:(NSString*)countryCode { NSString *identifier = [NSLocale localeIdentifierFromComponents:@{NSLocaleCountryCode: countryCode}]; NSStrin
Please try below code, it should work. I tried it on my device as well as simulator 8.1
- (NSString *)countryNameByCode:(NSString*)countryCode { return [[NSLocale systemLocale] displayNameForKey:NSLocaleCountryCode value:countryCode]; }