123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- //
- // IDBackView.m
- // ORC
- //
- // Created by lorin on 2017/6/21.
- // Copyright © 2017年 lorin. All rights reserved.
- //
- #import "IDBackView.h"
- #import "xingchuangke-Swift.h"
- // iPhone5/5c/5s/SE 4英寸 屏幕宽高:320*568点 屏幕模式:2x 分辨率:1136*640像素
- #define iPhone5or5cor5sorSE ([UIScreen mainScreen].bounds.size.height == 568.0)
- // iPhone6/6s/7 4.7英寸 屏幕宽高:375*667点 屏幕模式:2x 分辨率:1334*750像素
- #define iPhone6or6sor7 ([UIScreen mainScreen].bounds.size.height == 667.0)
- // iPhone6 Plus/6s Plus/7 Plus 5.5英寸 屏幕宽高:414*736点 屏幕模式:3x 分辨率:1920*1080像素
- #define iPhone6Plusor6sPlusor7Plus ([UIScreen mainScreen].bounds.size.height == 736.0)
- @interface IDBackView () {
- CAShapeLayer *_IDCardScanningWindowLayer;
- NSTimer *_timer;
- }
- @end
- @implementation IDBackView
- -(instancetype)initWithFrame:(CGRect)frame{
- if (self=[super initWithFrame:frame]) {
- self.backgroundColor = [UIColor clearColor];
- // 添加扫描窗口
- [self addScaningWindow];
-
- // 添加定时器
- [self addTimer];
- }
- return self;
- }
- #pragma mark - 添加扫描窗口
- -(void)addScaningWindow {
- // 中间包裹线
- _IDCardScanningWindowLayer = [CAShapeLayer layer];
- _IDCardScanningWindowLayer.position = self.layer.position;
- CGFloat width = iPhone5or5cor5sorSE? 240: (iPhone6or6sor7? 270: 300);
- _IDCardScanningWindowLayer.bounds = (CGRect){CGPointZero, {width, width * 1.574}};
- _IDCardScanningWindowLayer.cornerRadius = 15;
- _IDCardScanningWindowLayer.borderColor = [UIColor whiteColor].CGColor;
- _IDCardScanningWindowLayer.borderWidth = 1.5;
- [self.layer addSublayer:_IDCardScanningWindowLayer];
-
- // 最里层镂空
- UIBezierPath *transparentRoundedRectPath = [UIBezierPath bezierPathWithRoundedRect:_IDCardScanningWindowLayer.frame cornerRadius:_IDCardScanningWindowLayer.cornerRadius];
-
- // 最外层背景
- UIBezierPath *path = [UIBezierPath bezierPathWithRect:self.frame];
- [path appendPath:transparentRoundedRectPath];
- [path setUsesEvenOddFillRule:YES];
- CAShapeLayer *fillLayer = [CAShapeLayer layer];
- fillLayer.path = path.CGPath;
- fillLayer.fillRule = kCAFillRuleEvenOdd;
- fillLayer.fillColor = [UIColor blackColor].CGColor;
- fillLayer.opacity = 0.6;
-
- [self.layer addSublayer:fillLayer];
-
- // 提示标签
- CGPoint center = self.center;
- center.x = CGRectGetMaxX(_IDCardScanningWindowLayer.frame) + 20;
- [self addTipLabelWithText:@"将银行卡置于此区域内扫描" center:center];
- }
- #pragma mark - 添加提示标签
- -(void )addTipLabelWithText:(NSString *)text center:(CGPoint)center {
- UILabel *tipLabel = [[UILabel alloc] init];
-
- tipLabel.text = text;
- tipLabel.textColor = [UIColor whiteColor];
- tipLabel.textAlignment = NSTextAlignmentCenter;
-
- tipLabel.transform = CGAffineTransformMakeRotation(M_PI * 0.5);
- [tipLabel sizeToFit];
-
- tipLabel.center = center;
-
- [self addSubview:tipLabel];
- }
- #pragma mark - 添加定时器
- -(void)addTimer {
- _timer = [NSTimer scheduledTimerWithTimeInterval:0.02 target:self selector:@selector(timerFire:) userInfo:nil repeats:YES];
- [_timer fire];
- }
- -(void)timerFire:(id)notice {
- [self setNeedsDisplay];
- }
- -(void)dealloc {
- [_timer invalidate];
- }
- - (void)drawRect:(CGRect)rect {
- rect = _IDCardScanningWindowLayer.frame;
-
- // 人像提示框
- UIBezierPath *facePath = [UIBezierPath bezierPathWithRect:_facePathRect];
- facePath.lineWidth = 1.5;
- [[UIColor whiteColor] set];
- [facePath stroke];
-
- // 水平扫描线
- CGContextRef context = UIGraphicsGetCurrentContext();
-
- static CGFloat moveX = 0;
- static CGFloat distanceX = 0;
-
- CGContextBeginPath(context);
- CGContextSetLineWidth(context, 2);
- CGContextSetRGBStrokeColor(context,0.3,0.8,0.3,0.8);
- CGPoint p1, p2;// p1, p2 连成水平扫描线;
-
- moveX += distanceX;
- if (moveX >= CGRectGetWidth(rect) - 2) {
- distanceX = -2;
- } else if (moveX <= 2){
- distanceX = 2;
- }
-
- p1 = CGPointMake(CGRectGetMaxX(rect) - moveX, rect.origin.y);
- p2 = CGPointMake(CGRectGetMaxX(rect) - moveX, rect.origin.y + rect.size.height);
-
- CGContextMoveToPoint(context,p1.x, p1.y);
- CGContextAddLineToPoint(context, p2.x, p2.y);
-
- CGContextStrokePath(context);
- }
- @end
|