iOS 验证码的实现

栏目: IOS · 发布时间: 5年前

内容简介:我们经常会在手机应用中会看到输入验证码,然后操作一个东西,那么我们应该如何去实现他呢,先看一下效果

我们经常会在手机应用中会看到输入验证码,然后操作一个东西,那么我们应该如何去实现他呢,先看一下效果

iOS 验证码的实现

1、首先我们定义一个继承UIView的类 ZYCaptchaView 用于、生成验证码的操作
2、.h文件中我们这样声明

/**字符数组 */
@property (nonatomic , strong)NSArray *characterArray;
/** 验证码字符串 */
@property (nonatomic , strong)NSMutableString  *captchaString;
 /** 加载验证码 */
- (void)loadCaptcha;

3、.m文件中我们具体去实现

首先,我们在 initWithFrame

中生成一个随机的验证码

- (instancetype)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
    //设置layer圆角半径
    self.layer.cornerRadius = 5.0;
    //影藏边境
    self.layer.masksToBounds = YES;
    self.backgroundColor = kRandomColor;
    //显示一个随机验证码
    [self randomCaptcha];
}
return self;
}
 #pragma mark -- 更换验证码
- (void)randomCaptcha {
//数组中存放的是全部可选的字符,可以是字母,也可以是中文
self.characterArray = [[NSArray alloc]initWithObjects:@"0",@"1",@"2",@"3",@"4",@"5",@"6",@"7",@"8",@"9",@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H",@"I",@"J",@"K",@"L",@"M",@"N",@"O",@"P",@"Q",@"R",@"S",@"T",@"U",@"V",@"W",@"X",@"Y",@"Z",@"a",@"b",@"c",@"d",@"e",@"f",@"g",@"h",@"i",@"j",@"k",@"l",@"m",@"n",@"o",@"p",@"q",@"r",@"s",@"t",@"u",@"v",@"w",@"x",@"y",@"z", nil];
NSMutableString *getStr = [[NSMutableString alloc] initWithCapacity:kCharCount];
self.captchaString = [[NSMutableString alloc] initWithCapacity:kCharCount];
//随机从数组中选取需要个数的字符,然后拼接为一个字符串
for (int i = 0 ; i < kCharCount; i ++) {
    int index = arc4random() % (self.characterArray.count - 1);
    getStr = [self.characterArray objectAtIndex:index];
    self.captchaString = [[self.captchaString stringByAppendingString:getStr] copy];
}
//从网络获取字符串,然后把得到的字符串在本地绘制出来(网络获取步骤在这省略)
}

其次,我们实现加载验证码的代码

/** 加载验证码 */
- (void)loadCaptcha {
   //更换验证码
 [self randomCaptcha];
//重新绘制
[self setNeedsDisplay];
}

最后我们实现绘制验证码的代码,也就是重写 drawRect 方法

#pragma mark 绘制界面
- (void)drawRect:(CGRect)rect {
[super drawRect:rect];
//设置随机背景颜色
self.backgroundColor = kRandomColor;
//获取要显示的验证码字符串
NSString *text = [NSString stringWithFormat:@"%@" , self.captchaString];
CGSize cSize = [@"s" sizeWithAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:20]}];
int width = rect.size.width / text.length - cSize.width;
int height = rect.size.height - cSize.height;
CGPoint point;
//依次绘制每一个字符,可以设置显示的每个字符的字体大小、颜色、样式等
float pX , pY;
for (int i = 0; i < text.length; i ++) {
    pX = arc4random() % width + rect.size.width / text.length * i;
    pY = arc4random() % height;
    point = CGPointMake(pX, pY);
    unichar c = [text characterAtIndex:i];
    NSString *textC = [NSString stringWithFormat:@"%c" , c];
    [textC drawAtPoint:point withAttributes:@{NSFontAttributeName:kFontSize}];
}
//获取上下文
CGContextRef context = UIGraphicsGetCurrentContext();
//设置画线宽度
CGContextSetLineWidth(context, kLineWidth);
//绘制干扰的彩色直线
for (int i = 0; i < kLineCount; i ++) {
    //设置线的随机颜色
    UIColor *color = kRandomColor;
    CGContextSetStrokeColorWithColor(context, color.CGColor);
    //设置线的起点
    pX = arc4random() % (int)rect.size.width;
    pY = arc4random() % (int)rect.size.height;
    CGContextMoveToPoint(context, pX, pY);
    //设置线的终点
    pX = arc4random() % (int)rect.size.width;
    pY = arc4random() % (int)rect.size.height;
    CGContextAddLineToPoint(context, pX, pY);
    //画线
    CGContextStrokePath(context);
  }
}

4、在控制器中调用我们的类

需要注意的是我们需要让验证码不区分大小写,我们就需要大小写进行转换,你可以将所有字母转换为大写,也可以转换为小写。大小写转换的代码如下:

/** 大写字母转换为小写 */
- (NSString *)toLower:(NSString *)str {
for (int i = 0; i < str.length; i++) {
    if ([str characterAtIndex:i] >= 'A' && [str characterAtIndex:i] <= 'Z') {
        char temp = [str characterAtIndex:i] + 32;
        NSRange range = NSMakeRange(i, 1);
        str = [str stringByReplacingCharactersInRange:range withString:[NSString stringWithFormat:@"%c" , temp]];
    }
}
return str;
}
/** 小写字母转换为大写 */
-(NSString *)toUpper:(NSString *)str{
for (int i = 0; i < str.length; i++) {
    if ([str characterAtIndex:i]>='a'&[str characterAtIndex:i]<='z') {
        char  temp=[str characterAtIndex:i]-32;
        NSRange range=NSMakeRange(i, 1);
        str=[str stringByReplacingCharactersInRange:range withString:[NSString stringWithFormat:@"%c",temp]];
    }
}
return str;
}

大概就这些步骤了,如有需要可以下载: https://github.com/zhangyqyx/verificationCode

希望大家能提出宝贵的意见,可以给我留言,也可以发邮件到我的邮箱: namezyqyx@163.com

谢谢大家,如果你有更好的想法或文章请告知,不胜感激。

作者:谁遇而安

链接:https://www.jianshu.com/p/4e62c86615da


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

从问题到程序

从问题到程序

裘宗燕 / 机械工业出版社 / 2005-9-1 / 36.00元

本书以C作为讨论程序设计的语言,讨论了基本程序设计的各方面问题。书中给出程序实例时没有采用常见的提出问题,给出解答,再加些解释的简单三步形式,而是增加了许多问题的分析和讨论,以帮助读者认识程序设计过程的实质,理解从问题到程序的思考过程。书中还尽可能详尽地解释了许多与C语言和程序设计有关的问题。 本书适合作为高等院校计算机及相关专业的教材,也可供其他学习C程序设计语言的读者阅读。一起来看看 《从问题到程序》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具