You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to validate a Phone number of Kuwait country it is always returning false for this series but in android it working returning true, which is correct. Is there any other way to solve this.
guard let phoneUtil = NBPhoneNumberUtil.sharedInstance() else {
return
}
do {
let phoneNumber: NBPhoneNumber = try phoneUtil.parse("41442429", defaultRegion: "KW")
print("IsValidPhoneNumber ==> \(phoneUtil.isValidNumber(phoneNumber) ? "YES": "NO")")
}
catch let error as NSError {
print(error.localizedDescription)
}
The text was updated successfully, but these errors were encountered:
Ashok07k
changed the title
Phone number validation is not working for Kuwait
Phone number validation is not validating for Kuwait in iOS
Sep 2, 2022
I also encountered this problem. Do you have a specific solution now? My number is true in web page verification, but it becomes false in ios project. Do you have a solution now?
I am trying to validate a Phone number of Kuwait country it is always returning false for this series but in android it working returning true, which is correct. Is there any other way to solve this.
The text was updated successfully, but these errors were encountered: