libPhoneNumber-iOS
libPhoneNumber-iOS copied to clipboard
iOS port from libphonenumber (Google's phone number handling library)
Today when I run the script `carthage update` I found that there is an error with the libPhoneNumber. the error's description is in the issue title. Then I solved it...
Hi phone number is : +1 684 123 456 75 how to know it's for USA or American Samoa or Canada ,? +1 is for all of them . Thanks!
I'm using 0.9.2 libPhoneNumber and it appeared that `[[NBPhoneNumberUtil new] getCountryCodeForRegion:]` method always returns 0 for valid country codes. The reason is `Class metaClass = NSClassFromString(className);` always *nil* in _getMetadataForRegion:_...
Hi It is necessary to complement the validity check of the KR region. If the first digit is 010, the telephone number is 11 digits. 010-1234-1234 Valid. 010-123-1234 Not valid....
Hello, Please, can you port ShortNumberInfo class for Objective-C :)
I have a private pod that has `libPhoneNumber-iOS` as a dependency. I am trying to run `pod lib lint` on my `podspec` and it keeps failing the error sums up...
``` obj-c NSError *anError = nil; NBPhoneNumber *myNumber = [phoneUtil parse:@"6766077303" defaultRegion:@"AT" error:&anError]; if (anError == nil) { // Should check error NSLog(@"isValidPhoneNumber ? [%@]", [phoneUtil isValidNumber:myNumber] ? @"YES":@"NO"); …...
Hi. Great library You should add to the main documentation that you are able to parse a number also by saying default locale == "" and extract the country code...