码迷,mamicode.com
首页 > 移动开发 > 详细

iOS使用技能 - 短信,语言验证码的获取与验证小结

时间:2016-07-01 22:52:45      阅读:419      评论:0      收藏:0      [点我收藏+]

标签:

最近有学习一个小技能,这里小结一下,分享给大家,互相交流。

首先是大体步骤:

  1. mob官网注册,然后添加短信验证的应用
  2. 使用cocoapods导入框架
Podfile文件:
platform :ios, "6.0"
target 短信验证do
# Mob产品公共库
pod ‘MOBFoundation_IDFA‘
# SMSSDK必须
pod ‘SMSSDK‘
end
 

3.在AppDelegate注册应用AppKey

4.获取验证码

5.提交验证码

6.注意点:适配要记得开启https


1.在AppDelegate

 

//  注册AppKey

 [SMSSDK registerApp:@"14810905c09b0" withSecret:@"fbea3e77174d8c9da1d0839b1f0bdc82"];

 

如:

技术分享

 

2.短信和语言各一个简单方法即可实现

/**
 *  短信验证码
 */
- (IBAction)messageVerify {

    //  验证电话号码是否合法
    NSString *phoneNumber = self.phoneNumber.text;
    if (![phoneNumber isPhone]) {
        NSLog(@"你输入电话号码不正确");
        return;
    }

    self.savePhoneNumber = phoneNumber;
    //  获取短信验证码
    [SMSSDK getVerificationCodeByMethod:SMSGetCodeMethodSMS phoneNumber:phoneNumber zone:@"86" customIdentifier:nil result:^(NSError *error) {
        if (error) {
            NSLog(@"获取验证码失败:%@",error);
        }else{
            NSLog(@"获取验证码成功");
        }
    }];

}
/**
 *  语言验证码
 */
- (IBAction)voiceVerify {
    //  验证电话号码是否合法
    NSString *phoneNumber = self.phoneNumber.text;
    if (![phoneNumber isPhone]) {
        NSLog(@"你输入电话号码不正确");
        return;
    }
    self.savePhoneNumber = phoneNumber;
    //  获取语音验证码
    [SMSSDK getVerificationCodeByMethod:SMSGetCodeMethodVoice phoneNumber:phoneNumber zone:@"86" customIdentifier:nil result:^(NSError *error) {
        if (error) {
            NSLog(@"获取验证码失败:%@",error);
        }else{
            NSLog(@"获取验证码成功");
        }
    }];
}

/**
 *  验证
 */
- (IBAction)verifyResult {
    //  验证验证码是否合法
    NSString *verifyCode   = self.verifyLabel.text;
    if (verifyCode.length != 4) {
        NSLog(@"验证输入错误");
        return;
    }
    //  提交验证码
    [SMSSDK commitVerificationCode:verifyCode phoneNumber:self.savePhoneNumber zone:@"86" result:^(NSError *error) {
        if (!error) {
            NSLog(@"验证成功");
        }else{
            NSLog(@"错误信息:%@",error);
        }
    }];
}

上例是使用mob默认的短信格式,也可以自定义,可根据自身情况来选择。

技术分享

其他还有一些修改,大家可以阅读mob上的sdk文档来集成自己需要的形式。

 

 

iOS使用技能 - 短信,语言验证码的获取与验证小结

标签:

原文地址:http://www.cnblogs.com/somethingWithiOS/p/5634358.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!