美文网首页
IOS防止机器人登录的验证码控件

IOS防止机器人登录的验证码控件

作者: lxf_2013 | 来源:发表于2016-08-06 01:10 被阅读323次

.h文件



#import <UIKit/UIKit.h>

@class LXFVerificationCodeView;

@protocol LXFVerificationCodeViewDelegate <NSObject>

- (void) verificationCodeViewDidChange:(LXFVerificationCodeView *) verificationCodeView;

@end
@interface LXFVerificationCodeView : UIView

@property (nonatomic, weak) id<LXFVerificationCodeViewDelegate> delegate;

//验证码范围的数组
@property (nonatomic, retain) NSArray *changeArray;
//获取后的验证码
@property (nonatomic, retain) NSMutableString *changeString;
@end




.m文件


#import "LXFVerificationCodeView.h"

@implementation LXFVerificationCodeView

#pragma mark - 初始化
- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
        
        self.layer.cornerRadius = 5.0;
        self.layer.masksToBounds = YES;
        self.backgroundColor = [UIColor blueColor];
        
        [self change];
    }
    return self;
}

#pragma mark - 点击改变验证码
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
    [self change];
    
    if ([_delegate respondsToSelector:@selector(verificationCodeViewDidChange:)]) {
        [_delegate verificationCodeViewDidChange:self];
    }
    
    //刷新背景
    [self setNeedsDisplay];
}

#pragma mark - 随机获取验证码
- (void)change
{
    //范围
    self.changeArray = [[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:5];
    
    //随机字
    self.changeString = [[NSMutableString alloc] initWithCapacity:6];
    for(NSInteger i = 0; i < 4; i++)
    {
        NSInteger index = arc4random() % ([self.changeArray count] - 1);
        getStr = [self.changeArray objectAtIndex:index];
        
        self.changeString = (NSMutableString *)[self.changeString stringByAppendingString:getStr];
    }
}

#pragma mark - 随机背景,随机颜色
- (void)drawRect:(CGRect)rect {
    [super drawRect:rect];
    //背景颜色
    float red = arc4random() % 100 / 100.0;
    float green = arc4random() % 100 / 100.0;
    float blue = arc4random() % 100 / 100.0;
    UIColor *color = [UIColor colorWithRed:red green:green blue:blue alpha:1.0];
    [self setBackgroundColor:color];
    
    NSString *text = [NSString stringWithFormat:@"%@",self.changeString];
    
    NSMutableDictionary *attrDict = [NSMutableDictionary dictionary];
    attrDict[NSFontAttributeName] = [UIFont systemFontOfSize:14];
    CGSize cSize = [@"S" sizeWithAttributes:attrDict];
   
    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];
        NSMutableDictionary *attriDict = [NSMutableDictionary dictionary];
        attrDict[NSFontAttributeName] = [UIFont systemFontOfSize:20];
        [textC drawAtPoint:point withAttributes:attriDict];
    }
    
    //划线
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetLineWidth(context, 1.0);
    for(int cout = 0; cout < 10; cout++)
    {
        red = arc4random() % 100 / 100.0;
        green = arc4random() % 100 / 100.0;
        blue = arc4random() % 100 / 100.0;
        color = [UIColor colorWithRed:red green:green blue:blue alpha:1.0];
        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);
    }
}

- (void)setChangeString:(NSMutableString *)changeString{
    _changeString = changeString;
    [self setNeedsDisplay];
}
@end

相关文章

  • IOS防止机器人登录的验证码控件

    .h文件 .m文件

  • 8. 图片验证码

    为了防止机器人频繁登录网站或者破坏分子恶意登录,很多用户登录和注册系统都提供了图形验证码功能。 验证码(CAPTC...

  • 自动化测试验证码问题

    验证码作用 不少网站在用户登录、用户提交信息等登录和输入的页面上使用了验证码技术。验证码技术可以有效防止恶意用户对...

  • php注册登录系统开发实战

    php用户注册登录系统之验证码制作 验证码的分析 登录注册页面设置验证码主要是为了防止暴力破解、恶意注册等情况的发...

  • canvas制作随机验证码

    在通常的登录界面我们都可以看到验证码,验证码的作用是检测是不是人在操作,防止机器等非人操作,防止数据库被轻而易举的...

  • vue-swiper的使用教程

    在通常的登录界面我们都可以看到验证码,验证码的作用是检测是不是人在操作,防止机器等非人操作,防止数据库被轻而易举的...

  • SpringBoot配置Kaptcha验证码

    SpringBoot配置Kaptcha验证码 简介 验证码的作用其实就是通过人为操作来防止暴力破解、机器人等。 本...

  • J2EE-----用servlet在jsp页面中实现二维码的生成

    在许多登录界面,有着多次输入密码错误就会产生验证码防止有企图的人强力破解密码! 实现生成验证码的servlet 在...

  • Django实现验证码

    Django实现验证码 背景知识 1. 验证码的作用 防恶意破解密码:防止,使用程序或机器人恶意去试密码.为了提高...

  • 验证码控件异常问题的错误提示详情

    如果您在登录和登出页面看到错误来到这里,说明您无法载入我们的验证码控件,而无法登录。 简书在登录和注册页面使用 极...

网友评论

      本文标题:IOS防止机器人登录的验证码控件

      本文链接:https://www.haomeiwen.com/subject/jylksttx.html