DYFCodeScannerPreView.m 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. //
  2. // DYFCodeScannerPreView.m
  3. //
  4. // Created by dyf on 2018/01/28.
  5. // Copyright © 2018 dyf. All rights reserved.
  6. //
  7. // Permission is hereby granted, free of charge, to any person obtaining a copy
  8. // of this software and associated documentation files (the "Software"), to deal
  9. // in the Software without restriction, including without limitation the rights
  10. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. // copies of the Software, and to permit persons to whom the Software is
  12. // furnished to do so, subject to the following conditions:
  13. //
  14. // The above copyright notice and this permission notice shall be included in
  15. // all copies or substantial portions of the Software.
  16. //
  17. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  20. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  23. // THE SOFTWARE.
  24. //
  25. #import "DYFCodeScannerPreView.h"
  26. #import "DYFCodeScannerMacros.h"
  27. #import "UIButton+Corner.h"
  28. #import "DYFCodeScannerViewController.h"
  29. #define ItemW 40.f
  30. #define ItemH 40.f
  31. @interface DYFCodeScannerPreView ()
  32. @property (nonatomic, strong) UIImageView *lineImgView;
  33. @end
  34. @implementation DYFCodeScannerPreView
  35. - (UIImageView *)lineImgView {
  36. if (!_lineImgView) {
  37. _lineImgView = [[UIImageView alloc] init];
  38. _lineImgView.image = DYFBundleImageNamed(@"code_scanner_line");
  39. }
  40. return _lineImgView;
  41. }
  42. - (UILabel *)tipLabel {
  43. if (!_tipLabel) {
  44. _tipLabel = [[UILabel alloc] init];
  45. }
  46. return _tipLabel;
  47. }
  48. - (instancetype)initWithFrame:(CGRect)frame {
  49. self = [super initWithFrame:frame];
  50. if (self) {
  51. [self configure];
  52. }
  53. return self;
  54. }
  55. - (void)configure {
  56. self.autoresizingMask = (UIViewAutoresizingFlexibleLeftMargin |
  57. UIViewAutoresizingFlexibleWidth |
  58. UIViewAutoresizingFlexibleTopMargin |
  59. UIViewAutoresizingFlexibleHeight);
  60. self.backgroundColor = [UIColor clearColor];
  61. self.userInteractionEnabled = YES;
  62. self.transparentArea = CGSizeMake(280, 280);
  63. self.hasNavigationBar = NO;
  64. [self addLine];
  65. [self addTipLabel];
  66. [self addItems];
  67. [self addPinchGR];
  68. }
  69. - (void)addLine {
  70. [self addSubview:self.lineImgView];
  71. }
  72. - (void)addTipLabel {
  73. self.tipLabel.backgroundColor = [UIColor clearColor];
  74. self.tipLabel.numberOfLines = 1;
  75. self.tipLabel.font = [UIFont systemFontOfSize:13.f];
  76. self.tipLabel.textColor = [UIColor colorWithWhite:0.8f alpha:1.f];
  77. self.tipLabel.textAlignment = NSTextAlignmentCenter;
  78. [self addSubview:self.tipLabel];
  79. }
  80. - (void)addItems {
  81. UIButton *backButton = [[UIButton alloc] init];
  82. [backButton setImage:ImageNamed(@"code_scanner_back") forState:UIControlStateNormal];
  83. [backButton addTarget:self action:@selector(itemClicked:) forControlEvents:UIControlEventTouchUpInside];
  84. backButton.tag = 9;
  85. [self addSubview:backButton];
  86. UILabel *titleLabel = [[UILabel alloc] init];
  87. titleLabel.backgroundColor = [UIColor clearColor];
  88. titleLabel.tag = 10;
  89. titleLabel.textColor = [UIColor whiteColor];
  90. titleLabel.numberOfLines = 1;
  91. titleLabel.textAlignment = NSTextAlignmentCenter;
  92. titleLabel.font = [UIFont boldSystemFontOfSize:17.f];
  93. [self addSubview:titleLabel];
  94. UIButton *torchButton = [[UIButton alloc] init];
  95. [torchButton setImage:ImageNamed(@"code_scanner_torch") forState:UIControlStateNormal];
  96. [torchButton addTarget:self action:@selector(itemClicked:) forControlEvents:UIControlEventTouchUpInside];
  97. torchButton.tag = 11;
  98. torchButton.showsTouchWhenHighlighted = YES;
  99. [self addSubview:torchButton];
  100. UIButton *photoButton = [[UIButton alloc] init];
  101. [photoButton setImage:ImageNamed(@"code_scanner_photo") forState:UIControlStateNormal];
  102. [photoButton addTarget:self action:@selector(itemClicked:) forControlEvents:UIControlEventTouchUpInside];
  103. photoButton.tag = 12;
  104. photoButton.showsTouchWhenHighlighted = YES;
  105. [self addSubview:photoButton];
  106. UIButton *historyButton = [[UIButton alloc] init];
  107. [historyButton setImage:ImageNamed(@"code_scanner_history") forState:UIControlStateNormal];
  108. [historyButton addTarget:self action:@selector(itemClicked:) forControlEvents:UIControlEventTouchUpInside];
  109. historyButton.tag = 13;
  110. historyButton.hidden = YES;
  111. historyButton.showsTouchWhenHighlighted = YES;
  112. [self addSubview:historyButton];
  113. }
  114. - (void)addPinchGR {
  115. UIPinchGestureRecognizer *pinchGR = [[UIPinchGestureRecognizer alloc] init];
  116. [pinchGR addTarget:self action:@selector(pinchAction:)];
  117. [self addGestureRecognizer:pinchGR];
  118. }
  119. - (void)pinchAction:(UIPinchGestureRecognizer *)recognizer {
  120. if (recognizer.state == UIGestureRecognizerStateChanged) {
  121. CGFloat maxScale = 5.f;
  122. CGFloat minScale = 1.f;
  123. CGFloat nowScale = recognizer.scale;
  124. if (nowScale > maxScale) {
  125. nowScale = maxScale;
  126. }
  127. if (nowScale < minScale) {
  128. nowScale = minScale;
  129. }
  130. if (DYFRespondsToMethod(self.delegate, zoom:)) {
  131. [self.delegate zoom:nowScale];
  132. }
  133. }
  134. }
  135. - (void)setTitle:(NSString *)title {
  136. UILabel *titleLabel = [self viewWithTag:10];
  137. titleLabel.text = title;
  138. DYFLog(@"title: %@", titleLabel.text);
  139. }
  140. - (NSString *)title {
  141. UILabel *titleLabel = [self viewWithTag:10];
  142. return titleLabel.text;
  143. }
  144. - (void)setHasTorch:(BOOL)hasTorch {
  145. _hasTorch = hasTorch;
  146. if (hasTorch) {
  147. UIButton *torchButton = [self viewWithTag:11];
  148. [torchButton setImage:ImageNamed(@"code_scanner_torch_on") forState:UIControlStateSelected];
  149. }
  150. }
  151. - (void)updateLayout {
  152. DYFLog();
  153. [self layoutLine];
  154. [self layoutTipLabel];
  155. CGSize vSize = self.bounds.size;
  156. UIButton *backButton = [self viewWithTag: 9];
  157. UILabel *titleLabel = [self viewWithTag:10];
  158. UIButton *torchButton = [self viewWithTag:11];
  159. UIButton *photoButton = [self viewWithTag:12];
  160. UIButton *historyButton = [self viewWithTag:13];
  161. if (self.hasNavigationBar) {
  162. backButton.hidden = YES;
  163. titleLabel.hidden = YES;
  164. }
  165. if (!backButton.hidden) {
  166. CGFloat dt = 8.f;
  167. CGFloat backBtnX = 12.f;
  168. CGFloat backBtnY = (DYFStatusBarHeight > 20.f) ? 44.f : 34.f;
  169. backButton.frame = CGRectMake(backBtnX, backBtnY, ItemW - dt, ItemH - dt);
  170. backButton.imageEdgeInsets = UIEdgeInsetsMake(3, -2, 3, 2);
  171. CGFloat titleLabX = backBtnX + ItemW - dt + 10.f;
  172. CGFloat titleLabY = backButton.frame.origin.y;
  173. CGFloat titleLabW = vSize.width - 2*titleLabX;
  174. titleLabel.frame = CGRectMake(titleLabX, titleLabY, titleLabW, ItemH - dt);
  175. }
  176. UIColor *bgColor = [UIColor colorWithWhite:0.2 alpha:0.6];
  177. CGFloat tipLabY = self.tipLabel.frame.origin.y;
  178. CGFloat tipLabH = self.tipLabel.frame.size.height;
  179. CGFloat torchBtnX = (vSize.width - self.transparentArea.width)/2.f;
  180. CGFloat torchBtnY = tipLabY + tipLabH + 30.f;
  181. torchButton.frame = CGRectMake(torchBtnX, torchBtnY, ItemW, ItemH);
  182. torchButton.clipCorner(UIRectCornerAllCorners, bgColor, ItemH/2, VVBorderNull);
  183. CGFloat photoBtnX = (vSize.width - ItemW)/2.f;
  184. CGFloat photoBtnY = torchButton.frame.origin.y;
  185. if (historyButton.hidden) {
  186. photoBtnX = (vSize.width + self.transparentArea.width)/2.f - ItemW;
  187. }
  188. photoButton.frame = CGRectMake(photoBtnX, photoBtnY, ItemW, ItemH);
  189. photoButton.clipCorner(UIRectCornerAllCorners, bgColor, ItemH/2, VVBorderNull);
  190. if (!historyButton.hidden) {
  191. CGFloat historyBtnX = (vSize.width + self.transparentArea.width)/2.f - ItemW;
  192. CGFloat historyBtnY = torchButton.frame.origin.y;
  193. historyButton.frame = CGRectMake(historyBtnX, historyBtnY, ItemW, ItemH);
  194. historyButton.clipCorner(UIRectCornerAllCorners, bgColor, ItemH/2, VVBorderNull);
  195. }
  196. }
  197. - (void)layoutLine {
  198. CGFloat vW = self.bounds.size.width;
  199. CGFloat vH = self.bounds.size.height;
  200. CGFloat tH = self.transparentArea.height;
  201. CGFloat dw = 260.f;
  202. CGFloat dh = 2.f;
  203. CGFloat dx = (vW - dw)/2;
  204. CGFloat dy = vH/2 - tH/2 - 20.f;
  205. self.lineImgView.frame = CGRectMake(dx, dy, dw, dh);
  206. }
  207. - (void)layoutTipLabel {
  208. CGFloat vW = self.bounds.size.width;
  209. CGFloat vH = self.bounds.size.height;
  210. CGFloat tW = self.transparentArea.width;
  211. CGFloat tH = self.transparentArea.height;
  212. CGFloat dw = tW + 40.f;
  213. CGFloat dh = [self heightForString:self.tipLabel andWidth:dw];
  214. CGFloat dx = (vW - dw)/2;
  215. CGFloat dy = vH/2 + tH/2 - 20.f;
  216. self.tipLabel.frame = CGRectMake(dx, dy, dw, dh);
  217. }
  218. - (void)itemClicked:(UIButton *)sender {
  219. NSInteger index = sender.tag - 10;
  220. switch (index) {
  221. case -1: {
  222. !DYFRespondsToMethod(self.delegate, back) ?: [self.delegate back];
  223. break;
  224. }
  225. case 1: {
  226. DYFLog(@"hasTorch: %d", self.hasTorch);
  227. if (self.hasTorch) {
  228. sender.selected = !sender.selected;
  229. if (sender.selected) {
  230. !DYFRespondsToMethod(self.delegate, turnOnTorch) ?: [self.delegate turnOnTorch];
  231. } else {
  232. !DYFRespondsToMethod(self.delegate, turnOffTorch) ?: [self.delegate turnOffTorch];
  233. }
  234. }
  235. break;
  236. }
  237. case 2: {
  238. !DYFRespondsToMethod(self.delegate, openPhotoLibrary) ?: [self.delegate openPhotoLibrary];
  239. break;
  240. }
  241. case 3: {
  242. !DYFRespondsToMethod(self.delegate, queryHistory) ?: [self.delegate queryHistory];
  243. break;
  244. }
  245. default:
  246. break;
  247. }
  248. if (index != 1) {
  249. UIButton *torchButton = [self viewWithTag:11];
  250. torchButton.selected = NO;
  251. !DYFRespondsToMethod(self.delegate, turnOffTorch) ?: [self.delegate turnOffTorch];
  252. }
  253. }
  254. - (CGFloat)heightForString:(UILabel *)label andWidth:(CGFloat)width {
  255. CGSize sizeToFit = [label sizeThatFits:CGSizeMake(width, MAXFLOAT)];
  256. return sizeToFit.height;
  257. }
  258. - (void)startAnimation {
  259. if (!_lineImgView || !_isReading) {
  260. return;
  261. }
  262. CGFloat vH = self.bounds.size.height;
  263. CGFloat tH = self.transparentArea.height;
  264. [UIView animateWithDuration:2.f delay:0 options:UIViewAnimationOptionCurveLinear animations:^{
  265. //self.lineImgView.transform = CGAffineTransformMakeTranslation(0, tH - 20);
  266. CGRect r = self.lineImgView.frame;
  267. r.origin.y = vH/2 + tH/2 - 40.f;
  268. self.lineImgView.frame = r;
  269. } completion:^(BOOL finished) {
  270. //self.lineImgView.transform = CGAffineTransformIdentity;
  271. CGRect r = self.lineImgView.frame;
  272. r.origin.y = vH/2 - tH/2 - 20.f;
  273. self.lineImgView.frame = r;
  274. [self startAnimation];
  275. }];
  276. }
  277. - (void)startScan {
  278. if (_lineImgView) {
  279. _isReading = YES;
  280. [self updateLayout];
  281. [self startAnimation];
  282. }
  283. }
  284. - (void)stopScan {
  285. _isReading = NO;
  286. }
  287. - (void)drawRect:(CGRect)rect {
  288. CGSize vSize = self.bounds.size;
  289. CGRect screenDrawRect = CGRectMake(0, 0, vSize.width, vSize.height);
  290. CGFloat rX = (screenDrawRect.size.width - self.transparentArea.width )/2;
  291. CGFloat rY = (screenDrawRect.size.height - self.transparentArea.height)/2 - 30;
  292. CGFloat rW = self.transparentArea.width;
  293. CGFloat rH = self.transparentArea.height;
  294. CGRect clearDrawRect = CGRectMake(rX, rY, rW, rH);
  295. CGContextRef ctx = UIGraphicsGetCurrentContext();
  296. [self addScreenFillRect:ctx rect:screenDrawRect];
  297. [self addCenterClearRect:ctx rect:clearDrawRect];
  298. [self addWhiteRect:ctx rect:clearDrawRect];
  299. [self addCornerLineWithContext:ctx rect:clearDrawRect];
  300. }
  301. - (void)addScreenFillRect:(CGContextRef)ctx rect:(CGRect)rect {
  302. CGContextSetRGBFillColor(ctx, 10/255.0, 10/255.0, 10/255.0, 0.5);
  303. CGContextFillRect(ctx, rect); // draw the transparent layer
  304. }
  305. - (void)addCenterClearRect:(CGContextRef)ctx rect:(CGRect)rect {
  306. CGContextClearRect(ctx, rect); // clear the center rect of the layer
  307. }
  308. - (void)addWhiteRect:(CGContextRef)ctx rect:(CGRect)rect {
  309. CGContextStrokeRect(ctx, rect);
  310. CGContextSetRGBStrokeColor(ctx, 1, 1, 1, 1);
  311. CGContextSetLineWidth(ctx, 0.8);
  312. CGContextAddRect(ctx, rect);
  313. CGContextStrokePath(ctx);
  314. }
  315. - (void)addCornerLineWithContext:(CGContextRef)ctx rect:(CGRect)rect {
  316. // 画四个边角
  317. CGContextSetLineWidth(ctx, 2);
  318. CGContextSetRGBStrokeColor(ctx, 52/255.0, 191/255.0, 37/255.0, 1);
  319. // 左上角
  320. CGPoint poinsTopLeftA[] = {
  321. CGPointMake(rect.origin.x+0.7, rect.origin.y),
  322. CGPointMake(rect.origin.x+0.7, rect.origin.y+15)
  323. };
  324. CGPoint poinsTopLeftB[] = {
  325. CGPointMake(rect.origin.x, rect.origin.y+0.7),
  326. CGPointMake(rect.origin.x+15, rect.origin.y+0.7)
  327. };
  328. [self addLine:poinsTopLeftA pointB:poinsTopLeftB ctx:ctx];
  329. // 左下角
  330. CGPoint poinsBottomLeftA[] = {
  331. CGPointMake(rect.origin.x+0.7, rect.origin.y+rect.size.height-15),
  332. CGPointMake(rect.origin.x+0.7, rect.origin.y+rect.size.height)
  333. };
  334. CGPoint poinsBottomLeftB[] = {
  335. CGPointMake(rect.origin.x, rect.origin.y+rect.size.height-0.7),
  336. CGPointMake(rect.origin.x+0.7+15, rect.origin.y+rect.size.height-0.7)
  337. };
  338. [self addLine:poinsBottomLeftA pointB:poinsBottomLeftB ctx:ctx];
  339. // 右上角
  340. CGPoint poinsTopRightA[] = {
  341. CGPointMake(rect.origin.x+rect.size.width-15, rect.origin.y+0.7),
  342. CGPointMake(rect.origin.x+rect.size.width, rect.origin.y+0.7)
  343. };
  344. CGPoint poinsTopRightB[] = {
  345. CGPointMake(rect.origin.x+rect.size.width-0.7, rect.origin.y),
  346. CGPointMake(rect.origin.x+rect.size.width-0.7, rect.origin.y+15+0.7)
  347. };
  348. [self addLine:poinsTopRightA pointB:poinsTopRightB ctx:ctx];
  349. // 右下角
  350. CGPoint poinsBottomRightA[] = {
  351. CGPointMake(rect.origin.x+rect.size.width-0.7, rect.origin.y+rect.size.height-15),
  352. CGPointMake(rect.origin.x-0.7+rect.size.width, rect.origin.y+rect.size.height)
  353. };
  354. CGPoint poinsBottomRightB[] = {
  355. CGPointMake(rect.origin.x+rect.size.width-15, rect.origin.y+rect.size.height-0.7),
  356. CGPointMake(rect.origin.x+rect.size.width, rect.origin.y+rect.size.height-0.7)
  357. };
  358. [self addLine:poinsBottomRightA pointB:poinsBottomRightB ctx:ctx];
  359. CGContextStrokePath(ctx);
  360. }
  361. - (void)addLine:(CGPoint[])pointA pointB:(CGPoint[])pointB ctx:(CGContextRef)ctx {
  362. CGContextAddLines(ctx, pointA, 2);
  363. CGContextAddLines(ctx, pointB, 2);
  364. }
  365. - (void)dealloc {
  366. DYFLog();
  367. }
  368. @end