Hi I implement the sms verification following SINCH tuto:
verification.verify(enterPin.text!,
completion: { (success:Bool, error:NSError?) -> Void in
self.spinner.stopAnimating();
self.verifyButton.enabled = true;
self.enterPin.enabled = true;
if (success) {
//here I want to get the phone number in theE164 Format
self.status.text = "Verified";
} else {
self.status.text = error?.description;
}
});
I want to retrieve the phone number in the E164 FORMAT if the verification succeeded.. thanks for your help!