Sameeh Ahmed
Sameeh Ahmed
I found a simple fix for this by resetting the input in the Delegate when phoneNumberIsvalid returns false ``` func fpnDidValidatePhoneNumber(textField: FPNTextField, isValid: Bool) { if isValid == true {...
Any solution?
@kavin06 What @BryanLovesToCode has given works. I'd like to make it clear for you ``` let input = phoneNumberTextField.getFormattedPhoneNumber(format: .International)?.split(separator: " ") let countryPhoneCode = input![0] ```