1.首先使用Cocoapods导入库 ZBarSDK

2.敲代码:

ViewController.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
//
//  ViewController.h
//  erweima
//
//  Created by shaoting on 15/12/16.
//  Copyright © 2015年 9elephas. All rights reserved.
//
 
#import <UIKit/UIKit.h>
#import "ZBarSDK.h"
@interface ViewController : UIViewController<ZBarReaderDelegate>
 
 
@end

 ViewController.m

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//
//  ViewController.m
//  erweima
//
//  Created by shaoting on 15/12/16.
//  Copyright © 2015年 9elephas. All rights reserved.
//
 
#import "ViewController.h"
#define ScreenFrame [[UIScreen mainScreen]bounds]
@interface ViewController ()
 
@end
 
@implementation ViewController
 
- (void)viewDidLoad {
    [super viewDidLoad];
    UIButton * btn = [UIButton buttonWithType:UIButtonTypeCustom];
    btn.frame = CGRectMake(0, 0, 50, 50);
    [btn setTitle:@"扫描" forState:UIControlStateNormal];
    btn.backgroundColor = [UIColor redColor];
    [btn addTarget:self action:@selector(erweima:) forControlEvents:UIControlEventTouchUpInside];
    [self.view addSubview:btn];
    // Do any additional setup after loading the view, typically from a nib.
}
-(void)erweima:(UIButton *)btn{
    ZBarReaderViewController * reader = [ZBarReaderViewController new];//初始化相机控制器
    reader.readerDelegate = self;
    reader.supportedOrientationsMask = ZBarOrientationMaskAll;//基本适配
    reader.showsHelpOnFail = YES;
    reader.scanCrop = CGRectMake(0, 0, 1, 1);
    ZBarImageScanner * scanner = reader.scanner;
    [scanner setSymbology:25 config:0 to:0];
    UIView * view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, ScreenFrame.size.width, ScreenFrame.size.height)];
    reader.cameraOverlayView = view;
    [self presentViewController:reader animated:YES completion:^{
         
    }];
     
}
- (void) imagePickerController: (UIImagePickerController*) reader
 didFinishPickingMediaWithInfo: (NSDictionary*) info{
    id<NSFastEnumeration> results =
    [info objectForKey: ZBarReaderControllerResults];
    ZBarSymbol *symbol = nil;
    for(symbol in results)
        break;
    UIAlertView * alert = [[UIAlertView alloc]initWithTitle:@"消息" message:symbol.data delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:@"OK1", nil];
        [alert show];
 
}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
 
@end

demo下载:http://download.csdn.net/detail/shaoting19910730/9426472

使用真机测试: