美文网首页
生成随机验证码

生成随机验证码

作者: PZcoder | 来源:发表于2016-11-08 14:46 被阅读29次

    基础类方法:生成随机验证码

    codeLength验证码长度
    
    + (NSString *)randomCode:(int)codeLength
    {
        CFUUIDRef uuidObj = CFUUIDCreate(nil);
        NSString *radomString = [(NSString*)CFBridgingRelease(CFUUIDCreateString(nil, uuidObj)) substringToIndex:codeLength];
        CFRelease(uuidObj);
    
        return radomString;
    }
    
    

    相关文章

      网友评论

          本文标题:生成随机验证码

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