GraphCodeView icon indicating copy to clipboard operation
GraphCodeView copied to clipboard

iOS本地生成图形验证码,drawRect实现

GraphCodeView

iOS本地生成图形验证码的实现

image

使用方法

//图形验证码
- (GraphCodeView *)graphCodeView{
    if (!_graphCodeView) {
        _graphCodeView=[[GraphCodeView alloc]initWithFrame:CGRectMake(kScreenWidth/2-50.0, kScreenHeight/2-20.0, 100.0,40.0)];
        [_graphCodeView setCodeStr:@"S3G9"];//设置验证码
        [_graphCodeView setDelegate:self];
    }
    return _graphCodeView;
}z

#pragma mark - GraphCodeView delegate
- (void)didTapGraphCodeView:(GraphCodeView *)graphCodeView{
    NSLog(@"点击了图形验证码");

}

#联系我 微信公众号: iOSDevTeam