Commit 370a6da7 authored by lujunye's avatar lujunye

验证码删除大写字母

parent 63cc58a8
......@@ -104,7 +104,7 @@ class CaptchaView: UIView {
// 从字符数组中随机抽取相应数量的字符,组成验证码字符串
// 数组中存放的是全部可选的字符,可以是字母,也可以是中文
let changeArray = ["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"]
let changeArray = ["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"]
self.changeArray = changeArray as NSArray
self.changeString = String()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment