【发布时间】:2016-08-19 10:07:15
【问题描述】:
您好,我按照 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;
}
});
如果验证成功,我想找回E164 FORMAT中的电话号码..感谢您的帮助!
【问题讨论】:
标签: swift sinch sinch-verification