1. #import "QRScanViewController.h"
  2. #import "AppDelegate.h"
  3.  
  4. @interface QRScanViewController ()
  5. {
  6. BOOL infoShowing;
  7. UIAlertView *alert;
  8. BOOL upToDown;
  9. int num;
  10. UIImageView *lineImageView;
  11. NSTimer *timer;
  12. }
  13. @end
  14.  
  15. @implementation QRScanViewController
  16. @synthesize capture;
  17. @synthesize scanRectView;
  18. @synthesize backImageView;
  19. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
  20. {
  21. self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
  22. if (self) {
  23. // Custom initialization
  24. [self initViewFrame];
  25. }
  26. return self;
  27. }
  28.  
  29. - (void)viewDidLoad
  30. {
  31. [super viewDidLoad];
  32.  
  33. self.capture = [[ZXCapture alloc] init];
  34. self.capture.camera = self.capture.back;
  35. self.capture.focusMode = AVCaptureFocusModeContinuousAutoFocus;
  36. self.capture.rotation = 90.0f;
  37. self.capture.layer.frame = self.view.bounds;
  38.  
  39. [self.view.layer addSublayer:self.capture.layer];
  40. [self.view bringSubviewToFront:self.backImageView];
  41. [self.view bringSubviewToFront:self.scanRectView];
  42.  
  43. lineImageView = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"scan_line.png"]];
  44. lineImageView.frame = CGRectMake(self.scanRectView.frame.origin.x, self.scanRectView.frame.origin.y, self.scanRectView.frame.size.width, );
  45. [self.view addSubview:lineImageView];
  46. }
  47.  
  48. - (void)lineAnimation
  49. {
  50. if (!([self isViewLoaded] && [self.view superview])) {
  51. return;
  52. }
  53. if (upToDown) {
  54. num++;
  55. float temp = 0.0;
  56. if (*num > self.scanRectView.frame.size.height-) {
  57. temp = self.scanRectView.frame.size.height+self.scanRectView.frame.origin.y;
  58. upToDown = NO;
  59. }else{
  60. temp = self.scanRectView.frame.origin.y + *num;
  61. }
  62. lineImageView.frame = CGRectMake(self.scanRectView.frame.origin.x, temp, self.scanRectView.frame.size.width, );
  63. }else{
  64. num--;
  65. float temp = 0.0;
  66. if (num <= ) {
  67. temp = self.scanRectView.frame.origin.y;
  68. upToDown = YES;
  69. }else{
  70. temp = self.scanRectView.frame.origin.y + *num;
  71. }
  72. lineImageView.frame = CGRectMake(self.scanRectView.frame.origin.x, temp, self.scanRectView.frame.size.width, );
  73. }
  74. }
  75.  
  76. - (void)viewDidAppear:(BOOL)animated
  77. {
  78. if (timer) {
  79. [timer invalidate];
  80. timer = nil;
  81. }
  82. upToDown = YES;
  83. num = ;
  84. lineImageView.frame = CGRectMake(self.scanRectView.frame.origin.x, self.scanRectView.frame.origin.y, self.scanRectView.frame.size.width, );
  85. timer = [NSTimer scheduledTimerWithTimeInterval:0.02 target:self selector:@selector(lineAnimation) userInfo:nil repeats:YES];
  86. }
  87.  
  88. - (void)stopTimer
  89. {
  90. if (timer) {
  91. [timer invalidate];
  92. timer = nil;
  93. }
  94. }
  95.  
  96. - (void)viewWillAppear:(BOOL)animated
  97. {
  98. [super viewWillAppear:animated];
  99.  
  100. self.capture.delegate = self;
  101. self.capture.layer.frame = self.view.bounds;
  102. // CGAffineTransform captureSizeTransform = CGAffineTransformMakeScale(320 / self.view.frame.size.width, 480 / self.view.frame.size.height);
  103. // self.capture.scanRect = CGRectApplyAffineTransform(self.scanRectView.frame, captureSizeTransform);
  104. if (viewer.device == DEVICE_IPAD || viewer.device == DEVICE_IPAD3) {
  105. [self showaCapture];
  106. }else{
  107. self.capture.rotation = 90.0f;
  108. CGAffineTransform transform = CGAffineTransformMakeRotation();
  109. [self.capture setTransform:transform];
  110. CGRect f = CGRectMake(, , self.view.bounds.size.width, self.view.bounds.size.height);
  111. self.view.layer.frame=f;
  112. self.capture.layer.frame = f;
  113. }
  114. }
  115.  
  116. - (void)showaCapture
  117. {
  118. CGAffineTransform transform;
  119. if (self.interfaceOrientation == UIInterfaceOrientationLandscapeLeft)
  120. {
  121. self.capture.rotation = 180.0f;
  122. transform = CGAffineTransformMakeRotation(M_PI/);
  123. }
  124. else if (self.interfaceOrientation == UIInterfaceOrientationLandscapeRight)
  125. {
  126. self.capture.rotation = 0.0f;
  127. transform = CGAffineTransformMakeRotation(-M_PI/);
  128. }
  129. else if (self.interfaceOrientation == UIInterfaceOrientationPortrait)
  130. {
  131. self.capture.rotation = 90.0f;
  132. transform = CGAffineTransformMakeRotation();
  133. }
  134. else if (self.interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)
  135. {
  136. self.capture.rotation = 270.0f;
  137. transform = CGAffineTransformMakeRotation(M_PI);
  138. }
  139.  
  140. [self.capture setTransform:transform];
  141. CGRect f = CGRectMake(, , self.view.bounds.size.width, self.view.bounds.size.height);
  142. self.view.layer.frame=f;
  143. self.capture.layer.frame = f;
  144. }
  145.  
  146. #pragma mark - ZXCaptureDelegate Methods
  147.  
  148. //- (void)captureCameraIsReady:(ZXCapture *)capture
  149. //{
  150. //
  151. //}
  152. //
  153. //- (void)captureSize:(ZXCapture *)capture width:(NSNumber *)width height:(NSNumber *)height
  154. //{
  155. //
  156. //}
  157.  
  158. - (void)captureResult:(ZXCapture *)capture result:(ZXResult *)result
  159. {
  160. if (!result) {
  161. return;
  162. }
  163. NSLog(@"结果是什么= %@",result.text);
  164. NSString *formatString = [self barcodeFormatToString:result.barcodeFormat];
  165. if (![formatString isEqualToString:@"QR Code"]) {
  166. return;
  167. }
  168.  
  169. NSString *display = [NSString stringWithFormat:@"Scanned!\n\nFormat: %@\n\nContents:\n%@", formatString, result.text];
  170. NSLog(@"二维码是%@",display);
  171. // [decodedLabel performSelectorOnMainThread:@selector(setText:) withObject:display waitUntilDone:YES];
  172. AudioServicesPlaySystemSound(kSystemSoundID_Vibrate);
  173. if (infoShowing) {
  174. return;
  175. }
  176. if (alert) {
  177. [alert release];
  178. alert = nil;
  179. }
  180. alert = [[UIAlertView alloc] initWithTitle:@"信息" message:result.text delegate:nil cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
  181. alert.delegate = self;
  182. [alert show];
  183. infoShowing = YES;
  184. }
  185.  
  186. #pragma mark - Private Methods
  187.  
  188. - (NSString *)barcodeFormatToString:(ZXBarcodeFormat)format {
  189. switch (format) {
  190. case kBarcodeFormatAztec:
  191. return @"Aztec";
  192.  
  193. case kBarcodeFormatCodabar:
  194. return @"CODABAR";
  195.  
  196. case kBarcodeFormatCode39:
  197. return @"Code 39";
  198.  
  199. case kBarcodeFormatCode93:
  200. return @"Code 93";
  201.  
  202. case kBarcodeFormatCode128:
  203. return @"Code 128";
  204.  
  205. case kBarcodeFormatDataMatrix:
  206. return @"Data Matrix";
  207.  
  208. case kBarcodeFormatEan8:
  209. return @"EAN-8";
  210.  
  211. case kBarcodeFormatEan13:
  212. return @"EAN-13";
  213.  
  214. case kBarcodeFormatITF:
  215. return @"ITF";
  216.  
  217. case kBarcodeFormatPDF417:
  218. return @"PDF417";
  219.  
  220. case kBarcodeFormatQRCode:
  221. return @"QR Code";
  222.  
  223. case kBarcodeFormatRSS14:
  224. return @"RSS 14";
  225.  
  226. case kBarcodeFormatRSSExpanded:
  227. return @"RSS Expanded";
  228.  
  229. case kBarcodeFormatUPCA:
  230. return @"UPCA";
  231.  
  232. case kBarcodeFormatUPCE:
  233. return @"UPCE";
  234.  
  235. case kBarcodeFormatUPCEANExtension:
  236. return @"UPC/EAN extension";
  237.  
  238. default:
  239. return @"Unknown";
  240. }
  241. }
  242.  
  243. //- (BOOL)shouldAutorotate
  244. //{
  245. // return YES;
  246. //}
  247. //
  248. //- (BOOL)shouldAutomaticallyForwardRotationMethods
  249. //{
  250. // return YES;
  251. //}
  252. //
  253. //- (NSUInteger)supportedInterfaceOrientations
  254. //{
  255. // return UIInterfaceOrientationMaskAll;
  256. //}
  257.  
  258. - (void)didReceiveMemoryWarning
  259. {
  260. [super didReceiveMemoryWarning];
  261. // Dispose of any resources that can be recreated.
  262. }
  263.  
  264. - (void)rotated
  265. {
  266. [self setViewFrame];
  267. }
  268.  
  269. - (void)setViewFrame{
  270. }
  271.  
  272. - (void)initViewFrame{
  273. }
  274.  
  275. #pragma mark - UIAlertViewDelegate
  276. - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
  277. {
  278. if (buttonIndex != alert.cancelButtonIndex) {
  279.  
  280. }
  281. infoShowing = NO;
  282. }
  283.  
  284. - (void)dealloc
  285. {
  286. [super dealloc];
  287. }
  288. /*
  289. #pragma mark - Navigation
  290.  
  291. @end

ZXingObjC二维码扫描的更多相关文章

  1. iOS学习——iOS原生实现二维码扫描

    最近项目上需要开发扫描二维码进行签到的功能,主要用于开会签到的场景,所以为了避免作弊,我们再开发时只采用直接扫描的方式,并且要屏蔽从相册读取图片,此外还在二维码扫描成功签到时后台会自动上传用户的当前地 ...

  2. XAMARIN ANDROID 二维码扫描示例

    现在二维码的应用越来越普及,二维码扫描也成为手机应用程序的必备功能了.本文将基于 Xamarin.Android 平台使用 ZXing.Net.Mobile  做一个简单的 Android 条码扫描示 ...

  3. [Unity3D]自制UnityForAndroid二维码扫描插件

    一周左右终于将二维码生成和扫描功能给实现了,终于能舒缓一口气了,从一开始的疑惑为啥不同的扫码客户端为啥扫出来的效果不同?通用的扫描器扫出来就是一个下载APK,自制的扫描器扫出来是想要的有效信息,然后分 ...

  4. 有关iOS系统中调用相机设备实现二维码扫描功能的注意点(3/3)

    今天我们接着聊聊iOS系统实现二维码扫描的其他注意点. 大家还记得前面我们用到的输出数据的类对象吗?AVCaptureMetadataOutput,就是它!如果我们需要实现目前主流APP扫描二维码的功 ...

  5. Android仿微信二维码扫描

    转载:http://blog.csdn.net/xiaanming/article/details/10163203 了解二维码这个东西还是从微信中,当时微信推出二维码扫描功能,自己感觉挺新颖的,从一 ...

  6. Android—ZXing二维码扫描遇到的问题

    最近工作中需要开发带有二维码扫描功能的软件(基于开源项目ZXing),遇到的问题记录一下,也希望给大家带来帮助. 1.首先因为扫描要开摄像机所以加权限是一定的,不然后面什么都不能进行 <uses ...

  7. Ios二维码扫描(系统自带的二维码扫描)

    Ios二维码扫描 这里给大家介绍的时如何使用系统自带的二维码扫描方法和一些简单的动画! 操作步骤: 1).首先你需要搭建UI界面如图:下图我用了俩个imageview和一个label 2).你需要在你 ...

  8. iOS 自带二维码扫描功能的实现

    自从iOS7以后中新增了二维码扫描功能.因此可以在不借助第三方类库的情况下简单的写出二维码的扫描功能: 原生的二维码扫描功能在AVFoundation框架下,所以在使用原生的二维码扫描功能时要先导入A ...

  9. PhoneGap(二维码扫描 )

    关于 phoneGap 如何做 二维码扫描 1.        先配置好, 环境 http://coenraets.org/blog/cordova-phonegap-3-tutorial/http: ...

随机推荐

  1. ckeditor深入挖掘吃透

  2. [LC] 541. Reverse String II

    Given a string and an integer k, you need to reverse the first k characters for every 2k characters ...

  3. F. Moving On

    http://codeforces.com/gym/102222/problem/F fory #include<bits/stdc++.h> using namespace std; t ...

  4. GenerateId类:生成唯一id、订单号

    using System;using System.Security.Cryptography; namespace Infrastructure{ public class GenerateId { ...

  5. sshd启动故障“Failed to start OpenSSH Server daemon ”解决方法

  6. LeetCode Day 11

    LeetCode0021 将两个有序链表合并为一个新的有序链表并返回.新链表是通过拼接给定的两个链表的所有节点组成的. 示例: 输入:1->2->4, 1->3->4 输出:1 ...

  7. 用两个栈实现一个队列(C++)

    分析 栈:后进先出 队列:先进先出 要使用两个栈实现队列(先进先出),主要思路是 1.插入一个元素:直接将元素插入stack1即可. 2.删除一个元素:当stack2不为空时 ,直接弹出栈顶元素,当s ...

  8. 【待填坑】LG_2467_[SDOI2010]地精部落

    不错的dp题...思维难度和码量成反比...

  9. Go语言如何实现单例模式

    单例模式是常见的设计模式,被广泛用于创建数据库,redis等单实例.作用在于可以控制实例个数节省系统资源 特点: 保证调用多次,只会产生单个实例 全局访问 单例的分类 单例模式大致分为2大类: 懒汉式 ...

  10. unittest(9)- 使用ddt给测试用例传参

    # 1. http_request.py import requests class HttpRequest: def http_request(self, url, method, data=Non ...