RMPhoneFormat *format = [RMPhoneFormat instance];
NSMutableArray *invalidCodes = [[NSMutableArray alloc] init];
for (NSString *countryCode in [NSLocale ISOCountryCodes])
{
NSString *callingCode = [format callingCodeForCountryCode:countryCode];
if (!callingCode) [invalidCodes addObject:countryCode];
}
NSLog(@"invalidCodes: %@", invalidCodes);
invalidCodes: (
AX,
BL,
BQ,
BV,
CC,
CW,
CX,
EH,
GG,
GS,
HM,
IM,
JE,
MF,
NF,
PN,
SJ,
SS,
TF,
TL,
UM,
YT
)