亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在iOS中實現生成圖片數字字母驗證效果

發布時間:2021-06-11 16:59:02 來源:億速云 閱讀:207 作者:Leah 欄目:移動開發

這篇文章給大家介紹怎么在iOS中實現生成圖片數字字母驗證效果,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

#import "CaptchaView.h"

#define kRandomColor [UIColor colorWithRed:arc4random() % 256 / 256.0 green:arc4random() % 256 / 256.0 blue:arc4random() % 256 / 256.0 alpha:1.0];

//#define kRandomColor [UIColor grayColor];
#define kLineCount 6
#define kLineWidth 1.0
#define kCharCount 4
#define kFontSize [UIFont systemFontOfSize:arc4random() % 5 + 15]

@implementation CaptchaView
@synthesize changeString,changeArray;

- (instancetype)initWithFrame:(CGRect)frame
{
  if (self = [super initWithFrame:frame]) {

    self.layer.cornerRadius = 5.0; //設置layer圓角半徑
    self.layer.masksToBounds = YES; //隱藏邊界
    self.backgroundColor = kRandomColor;

    //    [UIColor grayColor]

    //顯示一個隨機驗證碼
    [self changeCaptcha];
  }

  return self;
}
#pragma mark 更換驗證碼,得到更換的驗證碼的字符串
-(void)changeCaptcha
{
  //<一>從字符數組中隨機抽取相應數量的字符,組成驗證碼字符串
  //數組中存放的是全部可選的字符,可以是字母,也可以是中文
  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];

  //如果能確定最大需要的容量,使用initWithCapacity:來設置,好處是當元素個數不超過容量時,添加元素不需要重新分配內存
  NSMutableString *getStr = [[NSMutableString alloc] initWithCapacity:kCharCount];
  self.changeString = [[NSMutableString alloc] initWithCapacity:kCharCount];

  //隨機從數組中選取需要個數的字符,然后拼接為一個字符串
  for(int i = 0; i < kCharCount; i++)
  {
    NSInteger index = arc4random() % ([self.changeArray count] - 1);
    getStr = [self.changeArray objectAtIndex:index];

    self.changeString = (NSMutableString *)[self.changeString stringByAppendingString:getStr];
  }
}

#pragma mark 點擊view時調用,因為當前類自身就是UIView,點擊更換驗證碼可以直接寫到這個方法中,不用再額外添加手勢
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
  //點擊界面,切換驗證碼
  [self changeCaptcha];

  //setNeedsDisplay調用drawRect方法來實現view的繪制
  [self setNeedsDisplay];
}

#pragma mark 繪制界面(1.UIView初始化后自動調用; 2.調用setNeedsDisplay方法時會自動調用)
- (void)drawRect:(CGRect)rect {
  // 重寫父類方法,首先要調用父類的方法
  [super drawRect:rect];

  //設置隨機背景顏色
  self.backgroundColor = kRandomColor;

  //獲得要顯示驗證碼字符串,根據長度,計算每個字符顯示的大概位置
  NSString *text = [NSString stringWithFormat:@"%@",self.changeString];
  CGSize cSize = [@"S" sizeWithAttributes:@{NSFontAttributeName:[UIFont systemFontOfSize:20.0]}];
  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}];
  }

    //調用drawRect:之前,系統會向棧中壓入一個CGContextRef,調用UIGraphicsGetCurrentContext()會取棧頂的CGContextRef
    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);
    }
}
@end

關于怎么在iOS中實現生成圖片數字字母驗證效果就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

ios
AI

五家渠市| 许昌县| 商河县| 桐城市| 江都市| 东明县| 松溪县| 苏尼特左旗| 互助| 成都市| 花垣县| 大兴区| 全椒县| 江孜县| 巴马| 北京市| 太谷县| 阜阳市| 平乐县| 安龙县| 绥阳县| 来凤县| 恩施市| 宝应县| 开鲁县| 花莲市| 阿坝县| 扶沟县| 涞源县| 黄平县| 新巴尔虎左旗| 临潭县| 南昌市| 库车县| 德州市| 崇仁县| 巴青县| 左权县| 永春县| 阿坝县| 阜康市|