CodeInputView.m 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. //
  2. // CodeInputView.m
  3. // JDZBorrower
  4. //
  5. // Created by WangXueqi on 2018/4/20.
  6. // Copyright © 2018年 JingBei. All rights reserved.
  7. //
  8. #import "CodeInputView.h"
  9. #import "CALayer+Category.h"
  10. #define K_Screen_Width [UIScreen mainScreen].bounds.size.width
  11. #define K_Screen_Height [UIScreen mainScreen].bounds.size.height
  12. @interface CodeInputView()<UITextViewDelegate>
  13. @property(nonatomic,strong)UITextView * textView;
  14. @property(nonatomic,strong)NSMutableArray <CAShapeLayer *> * lines;
  15. @property(nonatomic,strong)NSMutableArray <UILabel *> * labels;
  16. @end
  17. @implementation CodeInputView
  18. - (instancetype)initWithFrame:(CGRect)frame inputType:(NSInteger)inputNum selectCodeBlock:(SelectCodeBlock)CodeBlock {
  19. self = [super initWithFrame:frame];
  20. if (self) {
  21. self.CodeBlock = CodeBlock;
  22. self.inputNum = inputNum;
  23. self.K_W = (self.frame.size.width - 25) / self.inputNum;
  24. [self initSubviews];
  25. }
  26. return self;
  27. }
  28. - (void)initSubviews {
  29. CGFloat W = CGRectGetWidth(self.frame);
  30. CGFloat H = self.K_W; //CGRectGetHeight(self.frame);
  31. CGFloat Padd = (self.frame.size.width - self.inputNum*self.K_W)/(self.inputNum+1);
  32. [self addSubview:self.textView];
  33. self.textView.frame = CGRectMake(Padd, 0, W-Padd*2, H);
  34. //默认编辑第一个.
  35. // [self beginEdit];
  36. for (int i = 0; i < _inputNum; i ++) {
  37. UIView *subView = [UIView new];
  38. subView.frame = CGRectMake(Padd+(self.K_W+Padd)*i, (CGRectGetHeight(self.frame) - H) / 2, self.K_W, H);
  39. subView.userInteractionEnabled = NO;
  40. [self addSubview:subView];
  41. [subView layer].borderColor = [[UIColor lightGrayColor] CGColor];
  42. [subView layer].borderWidth = 1;
  43. //[CALayer addSubLayerWithFrame:CGRectMake(2, H-2, self.K_W - 4, 2) backgroundColor:[UIColor lightGrayColor] backView:subView];
  44. //Label
  45. UILabel *label = [[UILabel alloc]init];
  46. label.frame = CGRectMake(0, 0, self.K_W, H);
  47. label.textAlignment = NSTextAlignmentCenter;
  48. label.textColor = [UIColor darkGrayColor];
  49. label.font = [UIFont systemFontOfSize:16];
  50. [subView addSubview:label];
  51. //光标
  52. UIBezierPath *path = [UIBezierPath bezierPathWithRect:CGRectMake(self.K_W / 2, 10, 2, H - 20)];
  53. CAShapeLayer *line = [CAShapeLayer layer];
  54. line.path = path.CGPath;
  55. line.fillColor = [UIColor darkGrayColor].CGColor;
  56. [subView.layer addSublayer:line];
  57. if (i == 0) {
  58. [line addAnimation:[self opacityAnimation] forKey:@"kOpacityAnimation"];
  59. //高亮颜色
  60. line.hidden = YES;
  61. }else {
  62. line.hidden = YES;
  63. }
  64. //把光标对象和label对象装进数组
  65. [self.lines addObject:line];
  66. [self.labels addObject:label];
  67. }
  68. }
  69. - (BOOL)textViewShouldBeginEditing:(UITextView *)textView
  70. {
  71. [self beginEdit];
  72. return YES;
  73. }
  74. #pragma mark - UITextViewDelegate
  75. - (void)textViewDidChange:(UITextView *)textView {
  76. NSString *verStr = textView.text;
  77. if (verStr.length > _inputNum) {
  78. textView.text = [textView.text substringToIndex:_inputNum];
  79. }
  80. //大于等于最大值时, 结束编辑
  81. if (verStr.length >= _inputNum) {
  82. [self endEdit];
  83. }
  84. if (self.CodeBlock) {
  85. self.CodeBlock(textView.text);
  86. }
  87. for (int i = 0; i < _labels.count; i ++) {
  88. UILabel *bgLabel = _labels[i];
  89. if (i < verStr.length) {
  90. [self changeViewLayerIndex:i linesHidden:YES];
  91. bgLabel.text = [verStr substringWithRange:NSMakeRange(i, 1)];
  92. }else {
  93. [self changeViewLayerIndex:i linesHidden:i == verStr.length ? NO : YES];
  94. //textView的text为空的时候
  95. if (!verStr && verStr.length == 0) {
  96. [self changeViewLayerIndex:0 linesHidden:NO];
  97. }
  98. bgLabel.text = @"";
  99. }
  100. }
  101. }
  102. //设置光标显示隐藏
  103. - (void)changeViewLayerIndex:(NSInteger)index linesHidden:(BOOL)hidden {
  104. CAShapeLayer *line = self.lines[index];
  105. if (hidden) {
  106. [line removeAnimationForKey:@"kOpacityAnimation"];
  107. }else{
  108. [line addAnimation:[self opacityAnimation] forKey:@"kOpacityAnimation"];
  109. }
  110. [UIView animateWithDuration:0.25 animations:^{
  111. line.hidden = hidden;
  112. }];
  113. }
  114. //开始编辑
  115. - (void)beginEdit{
  116. NSString *verStr = self.textView.text;
  117. if(verStr.length == 0)
  118. {
  119. self.lines[0].hidden = NO;
  120. }
  121. else if(verStr.length < 6)
  122. {
  123. self.lines[verStr.length].hidden = NO;
  124. }
  125. //[self.textView becomeFirstResponder];
  126. }
  127. //结束编辑
  128. - (void)endEdit{
  129. for( int i = 0; i < self.lines.count; i++)
  130. {
  131. self.lines[i].hidden = YES;
  132. }
  133. [self.textView resignFirstResponder];
  134. }
  135. //闪动动画
  136. - (CABasicAnimation *)opacityAnimation {
  137. CABasicAnimation *opacityAnimation = [CABasicAnimation animationWithKeyPath:@"opacity"];
  138. opacityAnimation.fromValue = @(1.0);
  139. opacityAnimation.toValue = @(0.0);
  140. opacityAnimation.duration = 0.9;
  141. opacityAnimation.repeatCount = HUGE_VALF;
  142. opacityAnimation.removedOnCompletion = YES;
  143. opacityAnimation.fillMode = kCAFillModeForwards;
  144. opacityAnimation.timingFunction=[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseIn];
  145. return opacityAnimation;
  146. }
  147. //对象初始化
  148. - (NSMutableArray *)lines {
  149. if (!_lines) {
  150. _lines = [NSMutableArray array];
  151. }
  152. return _lines;
  153. }
  154. - (NSMutableArray *)labels {
  155. if (!_labels) {
  156. _labels = [NSMutableArray array];
  157. }
  158. return _labels;
  159. }
  160. - (UITextView *)textView {
  161. if (!_textView) {
  162. _textView = [UITextView new];
  163. _textView.tintColor = [UIColor clearColor];
  164. _textView.backgroundColor = [UIColor clearColor];
  165. _textView.textColor = [UIColor clearColor];
  166. _textView.delegate = self;
  167. _textView.keyboardType = UIKeyboardTypeNumberPad;
  168. }
  169. return _textView;
  170. }
  171. @end