對(duì)于iOS二維碼的生成和掃描,也算的上老生常談的問題了,但是為了自己以后找這一方面的資料的時(shí)候能夠方便,所以寫一篇iOS二維碼的生成和掃描的文章.
二維碼的生成
對(duì)于生成二維碼 ,我們主要用到的是CIFilter先轉(zhuǎn)化為CIImage , 再添加到imageView上面去.
首先 我使用的XIB ,我們需要把CIFilter實(shí)例化
CIFilter *filter = [CIFilter filterWithName:@"CIQRCodeGenerator"];
然后就是傳入對(duì)應(yīng)的數(shù)據(jù)生成對(duì)應(yīng)的二維碼
//恢復(fù)濾鏡的默認(rèn)屬性(因?yàn)闉V鏡有可能保存上一次的屬性)
[filter setDefaults];
//經(jīng)字符串轉(zhuǎn)化成NSData
NSData *data = [self.textField.text dataUsingEncoding:NSUTF8StringEncoding];
//傳入data竹揍,將來濾鏡就知道要通過傳入的數(shù)據(jù)生成二維碼
[filter setValue:data forKey:@"inputMessage"];
//生成二維碼
CIImage *image = [filter outputImage];
//CIImage是CoreImage框架中最基本代表圖像的對(duì)象,他不僅包含元圖像數(shù)據(jù)甫男,還包含作用在原圖像上的濾鏡鏈一汽。
UIImage *image1 = [UIImage imageWithCIImage:image];
//注:像這樣將CIImage直接轉(zhuǎn)換成UIImage生成的二維碼會(huì)比較模糊识脆,但是簡(jiǎn)單梯浪,也可以掃描出信息封豪。
然后就是把我們的二維碼展示到我們的imageView上就可以了.
self.imgView.image = image1;
因?yàn)槭怯脁ib做的,所以可能上面有些看不懂,下面就是在ViewController完整的代碼
//
// ViewController.m
// iOS二維碼生成
//
// Created by songjc on 16/5/2.
// Copyright ? 2016年 Don9. All rights reserved.
//
#import "ViewController.h"
@interface ViewController ()
@property (strong, nonatomic) IBOutlet UITextField *textField;//輸入信息的Field
@property (strong, nonatomic) IBOutlet UIImageView *imgView;//生成的二維碼顯示的View
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (IBAction)generateAction:(id)sender {
[self.textField resignFirstResponder];
CIFilter *filter = [CIFilter filterWithName:@"CIQRCodeGenerator"];
//恢復(fù)濾鏡的默認(rèn)屬性(因?yàn)闉V鏡有可能保存上一次的屬性)
[filter setDefaults];
//經(jīng)字符串轉(zhuǎn)化成NSData
NSData *data = [self.textField.text dataUsingEncoding:NSUTF8StringEncoding];
//4.傳入data抖剿,將來濾鏡就知道要通過傳入的數(shù)據(jù)生成二維碼
[filter setValue:data forKey:@"inputMessage"];
//生成二維碼
CIImage *image = [filter outputImage];
//CIImage是CoreImage框架中最基本代表圖像的對(duì)象朽寞,他不僅包含元圖像數(shù)據(jù),還包含作用在原圖像上的濾鏡鏈斩郎。
UIImage *image1 = [UIImage imageWithCIImage:image];
//注:像這樣將CIImage直接轉(zhuǎn)換成UIImage生成的二維碼會(huì)比較模糊脑融,但是簡(jiǎn)單,也可以掃描出信息缩宜。
//設(shè)置生成好的二維碼到imageVIew上
self.imgView.image = image1;
}
@end
二維碼的掃描
二維碼掃描這一塊我們先導(dǎo)入兩個(gè)庫.
CoreImage.framework
AVFoundation.framework
對(duì)于二維碼的掃描代碼部分也是比較簡(jiǎn)單的,思路就是我們首先調(diào)用我們的相機(jī),然后掃描我們的二維碼通過實(shí)現(xiàn)AVCaptureMetadataOutputObjectsDelegate的代理方法在代理方法- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection中獲取到二維碼中的信息.然后加以處理.
注意:因?yàn)樾枰{(diào)用攝像頭,所以必須是真機(jī)測(cè)試,我在這里就不做模擬器的代碼保護(hù)了
代碼如下,因?yàn)樽⑨尪技拥奶敿?xì)了,我都不忍直視了??
//
// ViewController.m
// 二維碼掃描
//
// Created by songjc on 16/4/18.
// Copyright ? 2016年 Don9. All rights reserved.
//
#import "ViewController.h"
#import <AVFoundation/AVFoundation.h>
#import <CoreImage/CoreImage.h>
@interface ViewController ()<AVCaptureMetadataOutputObjectsDelegate>
//捕獲會(huì)話
@property (nonatomic,strong) AVCaptureSession *session;
//預(yù)覽圖層肘迎,可以通過輸出設(shè)備展示被捕獲的數(shù)據(jù)流。
@property (nonatomic,strong) AVCaptureVideoPreviewLayer *previewLayer;
@property (weak, nonatomic) IBOutlet UILabel *label;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (IBAction)scan:(UIButton *)sender {
//1.實(shí)例化拍攝設(shè)備
AVCaptureDevice *device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo]; //媒體類型
//2.設(shè)置輸入設(shè)備
NSError *error = nil;
AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:device error:&error];
if (error) {
//防止模擬器崩潰
NSLog(@"沒有攝像頭設(shè)備");
return;
}
//3.設(shè)置元數(shù)據(jù)輸出
//實(shí)例化拍攝元數(shù)據(jù)輸出
AVCaptureMetadataOutput *output=[[AVCaptureMetadataOutput alloc]init];
//設(shè)置輸出數(shù)據(jù)代理
[output setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];
//4.添加拍攝會(huì)話
//實(shí)例化拍攝會(huì)話
AVCaptureSession *session =[[AVCaptureSession alloc]init];
[session setSessionPreset:AVCaptureSessionPresetHigh];//預(yù)設(shè)輸出質(zhì)量
//添加會(huì)話輸入
[session addInput:input];
//添加會(huì)話輸出
[session addOutput:output];
//添加會(huì)話輸出條碼類型
[output setMetadataObjectTypes:@[AVMetadataObjectTypeQRCode]];
self.session = session;
//5.視頻預(yù)覽圖層
//實(shí)例化預(yù)覽圖層
AVCaptureVideoPreviewLayer *preview = [AVCaptureVideoPreviewLayer layerWithSession:_session];
preview.videoGravity = AVLayerVideoGravityResizeAspectFill;
preview.frame = CGRectMake(100, 100, 100, 100);
//將圖層插入當(dāng)前視圖
[self.view.layer insertSublayer:preview atIndex:100];
self.previewLayer = preview;
//6.啟動(dòng)會(huì)話
[_session startRunning];
}
//獲得的數(shù)據(jù)在此方法中
- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection{
// 會(huì)頻繁的掃描锻煌,調(diào)用代理方法
// 1. 如果掃描完成妓布,停止會(huì)話
[self.session stopRunning];
// 2. 刪除預(yù)覽圖層
[self.previewLayer removeFromSuperlayer];
// 3. 設(shè)置界面顯示掃描結(jié)果
//判斷是否有數(shù)據(jù)
if (metadataObjects.count > 0) {
AVMetadataMachineReadableCodeObject *obj = metadataObjects[0];
//如果需要對(duì)url或者名片等信息進(jìn)行掃描,可以在此進(jìn)行擴(kuò)展
self.label.text = obj.stringValue;
}
//結(jié)束掃描
[self dismissViewControllerAnimated:YES completion:^{
UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil message:self.label.text preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *action = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:nil];
[alert addAction:action];
[self presentViewController:alert animated:YES completion:nil];
}];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
@end
總結(jié): iOS原生二維碼的掃描和生成比較簡(jiǎn)單.但是用到的地方不少,希望這篇文章對(duì)大家有所幫助.