Full Code of lcddhr/QRWeiXinDemo for AI

master ea7753ad1a83 cached
63 files
130.5 KB
41.8k tokens
1 requests
Download .txt
Repository: lcddhr/QRWeiXinDemo
Branch: master
Commit: ea7753ad1a83
Files: 63
Total size: 130.5 KB

Directory structure:
gitextract_fde3d75u/

├── DDQRCode/
│   └── Classes/
│       ├── QRItem.h
│       ├── QRItem.m
│       ├── QRMenu.h
│       ├── QRMenu.m
│       ├── QRUtil.h
│       ├── QRUtil.m
│       ├── QRView.h
│       └── QRView.m
├── DDQRCode.podspec
├── Example/
│   ├── DDQRCode/
│   │   ├── DDAppDelegate.h
│   │   ├── DDAppDelegate.m
│   │   ├── DDPhotoQRCodeViewController.h
│   │   ├── DDPhotoQRCodeViewController.m
│   │   ├── DDQRCode-Info.plist
│   │   ├── DDQRCode-Prefix.pch
│   │   ├── DDQRCodeViewController.h
│   │   ├── DDQRCodeViewController.m
│   │   ├── DDViewController.h
│   │   ├── DDViewController.m
│   │   ├── Images.xcassets/
│   │   │   ├── AppIcon.appiconset/
│   │   │   │   └── Contents.json
│   │   │   └── LaunchImage.launchimage/
│   │   │       └── Contents.json
│   │   ├── Main.storyboard
│   │   ├── en.lproj/
│   │   │   └── InfoPlist.strings
│   │   └── main.m
│   ├── DDQRCode.xcodeproj/
│   │   ├── project.pbxproj
│   │   ├── project.xcworkspace/
│   │   │   └── contents.xcworkspacedata
│   │   └── xcshareddata/
│   │       └── xcschemes/
│   │           └── DDQRCode-Example.xcscheme
│   ├── DDQRCode.xcworkspace/
│   │   └── contents.xcworkspacedata
│   ├── Podfile
│   ├── Pods/
│   │   ├── DDQRCode/
│   │   │   ├── DDQRCode/
│   │   │   │   └── Classes/
│   │   │   │       ├── QRItem.h
│   │   │   │       ├── QRItem.m
│   │   │   │       ├── QRMenu.h
│   │   │   │       ├── QRMenu.m
│   │   │   │       ├── QRUtil.h
│   │   │   │       ├── QRUtil.m
│   │   │   │       ├── QRView.h
│   │   │   │       └── QRView.m
│   │   │   ├── LICENSE
│   │   │   └── README.md
│   │   ├── Local Podspecs/
│   │   │   └── DDQRCode.podspec.json
│   │   ├── Pods.xcodeproj/
│   │   │   └── project.pbxproj
│   │   └── Target Support Files/
│   │       ├── DDQRCode/
│   │       │   ├── DDQRCode-dummy.m
│   │       │   ├── DDQRCode-prefix.pch
│   │       │   ├── DDQRCode-umbrella.h
│   │       │   ├── DDQRCode.modulemap
│   │       │   ├── DDQRCode.xcconfig
│   │       │   └── Info.plist
│   │       └── Pods-DDQRCode_Example/
│   │           ├── Info.plist
│   │           ├── Pods-DDQRCode_Example-acknowledgements.markdown
│   │           ├── Pods-DDQRCode_Example-acknowledgements.plist
│   │           ├── Pods-DDQRCode_Example-dummy.m
│   │           ├── Pods-DDQRCode_Example-frameworks.sh
│   │           ├── Pods-DDQRCode_Example-resources.sh
│   │           ├── Pods-DDQRCode_Example-umbrella.h
│   │           ├── Pods-DDQRCode_Example.debug.xcconfig
│   │           ├── Pods-DDQRCode_Example.modulemap
│   │           └── Pods-DDQRCode_Example.release.xcconfig
│   └── Tests/
│       ├── Tests-Info.plist
│       ├── Tests-Prefix.pch
│       ├── Tests.m
│       └── en.lproj/
│           └── InfoPlist.strings
├── LICENSE
└── README.md

================================================
FILE CONTENTS
================================================

================================================
FILE: DDQRCode/Classes/QRItem.h
================================================
//
//  QRItem.h
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/4/30.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import <UIKit/UIKit.h>


typedef NS_ENUM(NSUInteger, QRItemType) {
    QRItemTypeQRCode = 0,
    QRItemTypeOther,
};


@interface QRItem : UIButton

@property (nonatomic, assign) QRItemType type;

- (instancetype)initWithFrame:(CGRect)frame
                       titile:(NSString *)titile;
@end


================================================
FILE: DDQRCode/Classes/QRItem.m
================================================
//
//  QRItem.m
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/4/30.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import "QRItem.h"
#import <objc/runtime.h>

@implementation QRItem

- (instancetype)initWithFrame:(CGRect)frame
                       titile:(NSString *)titile{
    
    self =  [QRItem buttonWithType:UIButtonTypeSystem];
    if (self) {
        
        [self setTitle:titile forState:UIControlStateNormal];
        self.frame = frame;
    }
    return self;
}
@end


================================================
FILE: DDQRCode/Classes/QRMenu.h
================================================
//
//  QRMenu.h
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/4/30.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "QRItem.h"

typedef void(^QRMenuDidSelectedBlock)(QRItem *item);

@interface QRMenu : UIView

@property (nonatomic, copy) QRMenuDidSelectedBlock didSelectedBlock;

- (instancetype)initWithFrame:(CGRect)frame;
@end


================================================
FILE: DDQRCode/Classes/QRMenu.m
================================================
//
//  QRMenu.m
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/4/30.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import "QRMenu.h"

@implementation QRMenu

/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
    // Drawing code
}
*/

- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
     
        [self setupQRItem];
        
    }
    
    return self;
}

- (void)setupQRItem {
    
    QRItem *qrItem = [[QRItem alloc] initWithFrame:(CGRect){
        .origin.x = 0,
        .origin.y = 0,
        .size.width = self.bounds.size.width / 2,
        .size.height = self.bounds.size.height
    } titile:@"二维码扫描"];
    qrItem.type = QRItemTypeQRCode;
    [self addSubview:qrItem];
    
    QRItem *otherItem = [[QRItem alloc] initWithFrame: (CGRect){
        
        .origin.x = self.bounds.size.width / 2,
        .origin.y = 0,
        .size.width = self.bounds.size.width / 2,
        .size.height = self.bounds.size.height
    } titile:@"条形码扫描"];
    otherItem.type = QRItemTypeOther;
    [self addSubview:otherItem];
    
    [qrItem addTarget:self action:@selector(qrScan:) forControlEvents:UIControlEventTouchUpInside];
    [otherItem addTarget:self action:@selector(qrScan:) forControlEvents:UIControlEventTouchUpInside];
    
}


#pragma mark - Action

- (void)qrScan:(QRItem *)qrItem {
    
    if (self.didSelectedBlock) {
        
        self.didSelectedBlock(qrItem);
    }
}



@end


================================================
FILE: DDQRCode/Classes/QRUtil.h
================================================
//
//  QRUtil.h
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/10/9.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>

@interface QRUtil : NSObject

+ (CGRect)screenBounds;

+ (AVCaptureVideoOrientation) videoOrientationFromCurrentDeviceOrientation;
@end


================================================
FILE: DDQRCode/Classes/QRUtil.m
================================================
//
//  QRUtil.m
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/10/9.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import "QRUtil.h"


@implementation QRUtil


+ (CGRect)screenBounds {
    
    UIScreen *screen = [UIScreen mainScreen];
    CGRect screenRect;
    if (![screen respondsToSelector:@selector(fixedCoordinateSpace)] && UIInterfaceOrientationIsLandscape([UIApplication sharedApplication].statusBarOrientation)) {
//        screenRect = CGRectMake(screen.bounds.origin.x, screen.bounds.origin.y, screen.bounds.size.height, screen.bounds.size.width);
        screenRect = CGRectMake(0, 0, screen.bounds.size.height, screen.bounds.size.width);
    } else {
        screenRect = screen.bounds;
    }
    
    return screenRect;
    
}

+ (AVCaptureVideoOrientation) videoOrientationFromCurrentDeviceOrientation {
    
    UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
    if (orientation == UIInterfaceOrientationPortrait) {
        NSLog(@"UIInterfaceOrientationPortrait");
        return AVCaptureVideoOrientationPortrait;
        
    } else if (orientation == UIInterfaceOrientationLandscapeLeft) {
        NSLog(@"AVCaptureVideoOrientationLandscapeLeft");
        return AVCaptureVideoOrientationLandscapeLeft;
        
    } else if (orientation == UIInterfaceOrientationLandscapeRight){
        NSLog(@"UIInterfaceOrientationLandscapeRight");
        return AVCaptureVideoOrientationLandscapeRight;
    } else if (orientation == UIInterfaceOrientationPortraitUpsideDown) {
        
        NSLog(@"UIInterfaceOrientationPortraitUpsideDown");
        return AVCaptureVideoOrientationPortraitUpsideDown;
    }
    
    return AVCaptureVideoOrientationPortrait;
}
@end


================================================
FILE: DDQRCode/Classes/QRView.h
================================================
//
//  QRView.h
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/4/25.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "QRMenu.h"


@protocol QRViewDelegate <NSObject>

- (void)scanTypeConfig:(QRItem *)item;

@end
@interface QRView : UIView


@property (nonatomic, weak) id<QRViewDelegate> delegate;
/**
 *  透明的区域
 */
@property (nonatomic, assign) CGSize transparentArea;
@end


================================================
FILE: DDQRCode/Classes/QRView.m
================================================
//
//  QRView.m
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/4/25.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import "QRView.h"
#import "QRUtil.h"

static NSTimeInterval kQrLineanimateDuration = 0.02;

@implementation QRView {

        UIImageView *qrLine;
        CGFloat qrLineY;
        QRMenu *qrMenu;
}

- (instancetype)initWithFrame:(CGRect)frame {
    
    self = [super initWithFrame:frame];
    if (self) {
        
        
        
    }
    return self;
}


- (void)layoutSubviews {
    
    [super layoutSubviews];
    if (!qrLine) {
        
        [self initQRLine];
        
        NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:kQrLineanimateDuration target:self selector:@selector(show) userInfo:nil repeats:YES];
        [timer fire];
    }
    
    if (!qrMenu) {
        [self initQrMenu];
    }
}

- (void)initQRLine {
    
    
    CGRect screenBounds = [QRUtil screenBounds];
    qrLine  = [[UIImageView alloc] initWithFrame:CGRectMake(screenBounds.size.width / 2 - self.transparentArea.width / 2, screenBounds.size.height / 2 - self.transparentArea.height / 2, self.transparentArea.width, 2)];
    qrLine.image = [UIImage imageNamed:@"qr_scan_line"];
    qrLine.contentMode = UIViewContentModeScaleAspectFill;
    [self addSubview:qrLine];
    qrLineY = qrLine.frame.origin.y;
}

- (void)initQrMenu {
    
    CGFloat height = 100;
    CGFloat width = [QRUtil screenBounds].size.width;
    qrMenu = [[QRMenu alloc] initWithFrame:CGRectMake(0, [QRUtil screenBounds].size.height - height, width, height)];
    qrMenu.backgroundColor = [UIColor grayColor];
    [self addSubview:qrMenu];
    
    __weak typeof(self)weakSelf = self;

    qrMenu.didSelectedBlock = ^(QRItem *item){
        
        NSLog(@"点击的是%lu",(unsigned long)item.type);
        
        if ([weakSelf.delegate respondsToSelector:@selector(scanTypeConfig:)] ) {
            
            [weakSelf.delegate scanTypeConfig:item];
        }
    };
}

- (void)show {
    
    [UIView animateWithDuration:kQrLineanimateDuration animations:^{
        
        CGRect rect = qrLine.frame;
        rect.origin.y = qrLineY;
        qrLine.frame = rect;
        
    } completion:^(BOOL finished) {
        
        CGFloat maxBorder = self.frame.size.height / 2 + self.transparentArea.height / 2 - 4;
        if (qrLineY > maxBorder) {
            
            qrLineY = self.frame.size.height / 2 - self.transparentArea.height /2;
        }
        qrLineY++;
    }];
}

- (void)drawRect:(CGRect)rect {
    
    //整个二维码扫描界面的颜色
    CGSize screenSize =[QRUtil screenBounds].size;
    CGRect screenDrawRect =CGRectMake(0, 0, screenSize.width,screenSize.height);
    
    //中间清空的矩形框
    CGRect clearDrawRect = CGRectMake(screenDrawRect.size.width / 2 - self.transparentArea.width / 2,
                                      screenDrawRect.size.height / 2 - self.transparentArea.height / 2,
                                      self.transparentArea.width,self.transparentArea.height);
    
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    [self addScreenFillRect:ctx rect:screenDrawRect];
    
    [self addCenterClearRect:ctx rect:clearDrawRect];
    
    [self addWhiteRect:ctx rect:clearDrawRect];
    
    [self addCornerLineWithContext:ctx rect:clearDrawRect];
    
    
}

- (void)addScreenFillRect:(CGContextRef)ctx rect:(CGRect)rect {
    
    CGContextSetRGBFillColor(ctx, 40 / 255.0,40 / 255.0,40 / 255.0,0.5);
    CGContextFillRect(ctx, rect);   //draw the transparent layer
}

- (void)addCenterClearRect :(CGContextRef)ctx rect:(CGRect)rect {
    
    CGContextClearRect(ctx, rect);  //clear the center rect  of the layer
}

- (void)addWhiteRect:(CGContextRef)ctx rect:(CGRect)rect {
    
    CGContextStrokeRect(ctx, rect);
    CGContextSetRGBStrokeColor(ctx, 1, 1, 1, 1);
    CGContextSetLineWidth(ctx, 0.8);
    CGContextAddRect(ctx, rect);
    CGContextStrokePath(ctx);
}

- (void)addCornerLineWithContext:(CGContextRef)ctx rect:(CGRect)rect{
    
    //画四个边角
    CGContextSetLineWidth(ctx, 2);
    CGContextSetRGBStrokeColor(ctx, 83 /255.0, 239/255.0, 111/255.0, 1);//绿色
    
    //左上角
    CGPoint poinsTopLeftA[] = {
        CGPointMake(rect.origin.x+0.7, rect.origin.y),
        CGPointMake(rect.origin.x+0.7 , rect.origin.y + 15)
    };
    
    CGPoint poinsTopLeftB[] = {CGPointMake(rect.origin.x, rect.origin.y +0.7),CGPointMake(rect.origin.x + 15, rect.origin.y+0.7)};
    [self addLine:poinsTopLeftA pointB:poinsTopLeftB ctx:ctx];
    
    //左下角
    CGPoint poinsBottomLeftA[] = {CGPointMake(rect.origin.x+ 0.7, rect.origin.y + rect.size.height - 15),CGPointMake(rect.origin.x +0.7,rect.origin.y + rect.size.height)};
    CGPoint poinsBottomLeftB[] = {CGPointMake(rect.origin.x , rect.origin.y + rect.size.height - 0.7) ,CGPointMake(rect.origin.x+0.7 +15, rect.origin.y + rect.size.height - 0.7)};
    [self addLine:poinsBottomLeftA pointB:poinsBottomLeftB ctx:ctx];
    
    //右上角
    CGPoint poinsTopRightA[] = {CGPointMake(rect.origin.x+ rect.size.width - 15, rect.origin.y+0.7),CGPointMake(rect.origin.x + rect.size.width,rect.origin.y +0.7 )};
    CGPoint poinsTopRightB[] = {CGPointMake(rect.origin.x+ rect.size.width-0.7, rect.origin.y),CGPointMake(rect.origin.x + rect.size.width-0.7,rect.origin.y + 15 +0.7 )};
    [self addLine:poinsTopRightA pointB:poinsTopRightB ctx:ctx];
    
    CGPoint poinsBottomRightA[] = {CGPointMake(rect.origin.x+ rect.size.width -0.7 , rect.origin.y+rect.size.height+ -15),CGPointMake(rect.origin.x-0.7 + rect.size.width,rect.origin.y +rect.size.height )};
    CGPoint poinsBottomRightB[] = {CGPointMake(rect.origin.x+ rect.size.width - 15 , rect.origin.y + rect.size.height-0.7),CGPointMake(rect.origin.x + rect.size.width,rect.origin.y + rect.size.height - 0.7 )};
    [self addLine:poinsBottomRightA pointB:poinsBottomRightB ctx:ctx];
    CGContextStrokePath(ctx);
}

- (void)addLine:(CGPoint[])pointA pointB:(CGPoint[])pointB ctx:(CGContextRef)ctx {
    CGContextAddLines(ctx, pointA, 2);
    CGContextAddLines(ctx, pointB, 2);
}


@end


================================================
FILE: DDQRCode.podspec
================================================
#
# Be sure to run `pod lib lint DDQRCode.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
  s.name             = 'DDQRCode'
  s.version          = '1.0.1'
  s.summary          = 'DDQRCode like WeChat'

# This description is used to generate tags and improve search results.
#   * Think: What does it do? Why did you write it? What is the focus?
#   * Try to keep it short, snappy and to the point.
#   * Write the description between the DESC delimiters below.
#   * Finally, don't worry about the indent, CocoaPods strips it!

  s.description      = <<-DESC
TODO: Add long description of the pod here.
                       DESC

  s.homepage         = 'https://github.com/lcddhr/QRWeiXinDemo'
  # s.screenshots     = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
  s.license          = { :type => 'MIT', :file => 'LICENSE' }
  s.author           = { 'lcd' => 'lcddhr@qq.com' }
  s.source           = { :git => 'https://github.com/lcddhr/QRWeiXinDemo.git', :tag => s.version.to_s }
  # s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

  s.ios.deployment_target = '7.0'

  s.source_files = 'DDQRCode/Classes/*.{h,m}'
  
  # s.resource_bundles = {
  #   'DDQRCode' => ['DDQRCode/Assets/*.png']
  # }

  s.public_header_files = 'DDQRCode/Classes/*.h'
  s.frameworks = 'UIKit', 'AVFoundation'
  # s.dependency 'AFNetworking', '~> 2.3'
end


================================================
FILE: Example/DDQRCode/DDAppDelegate.h
================================================
//
//  DDAppDelegate.h
//  DDQRCode
//
//  Created by lcd on 06/10/2016.
//  Copyright (c) 2016 lcd. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface DDAppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@end


================================================
FILE: Example/DDQRCode/DDAppDelegate.m
================================================
//
//  DDAppDelegate.m
//  DDQRCode
//
//  Created by lcd on 06/10/2016.
//  Copyright (c) 2016 lcd. All rights reserved.
//

#import "DDAppDelegate.h"

@implementation DDAppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    // Override point for customization after application launch.
    return YES;
}

- (void)applicationWillResignActive:(UIApplication *)application
{
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

- (void)applicationDidEnterBackground:(UIApplication *)application
{
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}

- (void)applicationDidBecomeActive:(UIApplication *)application
{
    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

- (void)applicationWillTerminate:(UIApplication *)application
{
    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

@end


================================================
FILE: Example/DDQRCode/DDPhotoQRCodeViewController.h
================================================
//
//  DDPhotoQRCodeViewController.h
//  DDQRCode
//
//  Created by meitu on 16/6/10.
//  Copyright © 2016年 lcd. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface DDPhotoQRCodeViewController : UIViewController

@end


================================================
FILE: Example/DDQRCode/DDPhotoQRCodeViewController.m
================================================
//
//  DDPhotoQRCodeViewController.m
//  DDQRCode
//
//  Created by meitu on 16/6/10.
//  Copyright © 2016年 lcd. All rights reserved.
//

#import "DDPhotoQRCodeViewController.h"


@interface DDPhotoQRCodeViewController ()

@property (nonatomic, strong) UIImageView *imageView;

@end

@implementation DDPhotoQRCodeViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.view.backgroundColor = [UIColor grayColor];
    
    [self defaultQRImageView];
}

- (void)defaultQRImageView {
    
    self.imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"QRCode.jpg"]];
    self.imageView.frame = CGRectMake(0, 0, 250, 250);
    self.imageView.center = CGPointMake(self.view.bounds.size.width / 2, self.view.bounds.size.height / 2);
    self.imageView.userInteractionEnabled = YES;
    [self.view addSubview:self.imageView];
    
    
    UILongPressGestureRecognizer *longPressGes = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(imageViewDidLongPressed:)];
    longPressGes.minimumPressDuration = 1.5;
    [self.imageView addGestureRecognizer:longPressGes];
}

- (void)imageViewDidLongPressed:(UILongPressGestureRecognizer *)ges {
    
    //因为长按手势开始和结束会调用两次这个方法,所以按自己的逻辑处理
    if(ges.state == UIGestureRecognizerStateBegan) {
        
        [self readPhotoQR];
        
    } else if(ges.state == UIGestureRecognizerStateEnded) {
        
    }else if(ges.state == UIGestureRecognizerStateChanged) {
        
        
        
    }
    
    
}

- (void)readPhotoQR {
    
    UIImage *srcImage = self.imageView.image;
    CIContext *context = [CIContext contextWithOptions:nil];
    CIDetector *detector = [CIDetector detectorOfType:CIDetectorTypeQRCode context:context options:@{CIDetectorAccuracy:CIDetectorAccuracyHigh}];
    CIImage *image = [CIImage imageWithCGImage:srcImage.CGImage];
    NSArray *features = [detector featuresInImage:image];
    CIQRCodeFeature *feature = [features firstObject];
    
    NSString *result = feature.messageString;
    
    if ([result isEqualToString:@""] || result.length == 0) {
        
        NSLog(@"没有扫描到");
    } else {
        
        NSLog(@"QRCode is %@",result);
        
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"提示" message:result delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];
        [alertView show];
    }
}




@end


================================================
FILE: Example/DDQRCode/DDQRCode-Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleDisplayName</key>
	<string>${PRODUCT_NAME}</string>
	<key>CFBundleExecutable</key>
	<string>${EXECUTABLE_NAME}</string>
	<key>CFBundleIdentifier</key>
	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>${PRODUCT_NAME}</string>
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1.0.0</string>
	<key>LSRequiresIPhoneOS</key>
	<true/>
	<key>UIMainStoryboardFile</key>
	<string>Main</string>
	<key>UIRequiredDeviceCapabilities</key>
	<array>
		<string>armv7</string>
	</array>
	<key>UISupportedInterfaceOrientations</key>
	<array>
		<string>UIInterfaceOrientationPortrait</string>
		<string>UIInterfaceOrientationLandscapeLeft</string>
		<string>UIInterfaceOrientationLandscapeRight</string>
	</array>
	<key>UISupportedInterfaceOrientations~ipad</key>
	<array>
		<string>UIInterfaceOrientationPortrait</string>
		<string>UIInterfaceOrientationPortraitUpsideDown</string>
		<string>UIInterfaceOrientationLandscapeLeft</string>
		<string>UIInterfaceOrientationLandscapeRight</string>
	</array>
</dict>
</plist>


================================================
FILE: Example/DDQRCode/DDQRCode-Prefix.pch
================================================
//
//  Prefix header
//
//  The contents of this file are implicitly included at the beginning of every source file.
//

#import <Availability.h>

#ifndef __IPHONE_5_0
#warning "This project uses features only available in iOS SDK 5.0 and later."
#endif

#ifdef __OBJC__
    @import UIKit;
    @import Foundation;
#endif


================================================
FILE: Example/DDQRCode/DDQRCodeViewController.h
================================================
//
//  DDQRCodeViewController.h
//  DDQRCode
//
//  Created by meitu on 16/6/10.
//  Copyright © 2016年 lcd. All rights reserved.
//

#import <UIKit/UIKit.h>

typedef void(^ScanCompleteBlock)(NSString *url);

@interface DDQRCodeViewController : UIViewController

@property (nonatomic, copy, readonly) NSString *urlString;

- (instancetype)initWithScanCompleteHandler:(ScanCompleteBlock)scanCompleteBlock;

- (void)stopRunning;


@end


================================================
FILE: Example/DDQRCode/DDQRCodeViewController.m
================================================
//
//  DDQRCodeViewController.m
//  DDQRCode
//
//  Created by meitu on 16/6/10.
//  Copyright © 2016年 lcd. All rights reserved.
//

#import "DDQRCodeViewController.h"
#import <AVFoundation/AVFoundation.h>
#import "QRView.h"
#import "QRUtil.h"


@interface DDQRCodeViewController ()<AVCaptureMetadataOutputObjectsDelegate,QRViewDelegate>

@property (strong, nonatomic) AVCaptureDevice * device;
@property (strong, nonatomic) AVCaptureDeviceInput * input;
@property (strong, nonatomic) AVCaptureMetadataOutput * output;
@property (strong, nonatomic) AVCaptureSession * session;
@property (strong, nonatomic) AVCaptureVideoPreviewLayer * preview;

@property (nonatomic, strong) UIButton *backBtn;

@property (nonatomic, strong) QRView *qrView;

@property (nonatomic, copy) ScanCompleteBlock scanCompleteBlock;

@property (nonatomic, copy, readwrite) NSString *urlString;

@end

@implementation DDQRCodeViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    [self defaultConfig];       //初始化配置,主要是二维码的配置
    [self configUI];
    [self updateLayout];
}

- (void)defaultConfig {
    [self startRunning];
}


- (void)viewWillAppear:(BOOL)animated {
    
    [super viewWillAppear:animated];
    if (![_session isRunning]) {
        
        [self startRunning];
    }
    
}
- (void)viewWillDisappear:(BOOL)animated {
    
    [super viewWillDisappear:animated];
    [self stopRunning];
}

- (void)configUI {
    
    [self.view addSubview:self.qrView];
    [self.view addSubview:self.backBtn];
    
}

- (void)updateLayout {
    
    
    
    _qrView.center = CGPointMake([QRUtil screenBounds].size.width / 2, [QRUtil screenBounds].size.height / 2);
    
    //修正扫描区域
    CGFloat screenHeight = self.view.frame.size.height;
    CGFloat screenWidth = self.view.frame.size.width;
    CGRect cropRect = CGRectMake((screenWidth - self.qrView.transparentArea.width) / 2,
                                 (screenHeight - self.qrView.transparentArea.height) / 2,
                                 self.qrView.transparentArea.width,
                                 self.qrView.transparentArea.height);
    
    [_output setRectOfInterest:CGRectMake(cropRect.origin.y / screenHeight,
                                          cropRect.origin.x / screenWidth,
                                          cropRect.size.height / screenHeight,
                                          cropRect.size.width / screenWidth)];
}

- (void)pop:(UIButton *)button {
    
    [self.navigationController popViewControllerAnimated:YES];
}

#pragma mark - Public Method
-(instancetype)initWithScanCompleteHandler:(ScanCompleteBlock)scanCompleteBlock {
    
    self = [super init];
    if (self) {
        _scanCompleteBlock = scanCompleteBlock;
    }
    return self;
}

- (void)startRunning {
    
    
    _device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
    
    // Input
    _input = [AVCaptureDeviceInput deviceInputWithDevice:self.device error:nil];
    
    // Output
    _output = [[AVCaptureMetadataOutput alloc]init];
    [_output setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];
    
    // Session
    _session = [[AVCaptureSession alloc]init];
    [_session setSessionPreset:AVCaptureSessionPresetHigh];
    if ([_session canAddInput:self.input])
    {
        [_session addInput:self.input];
    }
    
    if ([_session canAddOutput:self.output])
    {
        [_session addOutput:self.output];
    }
    
    AVCaptureConnection *outputConnection = [_output connectionWithMediaType:AVMediaTypeVideo];
    outputConnection.videoOrientation = [QRUtil videoOrientationFromCurrentDeviceOrientation];
    
    
    // 条码类型 AVMetadataObjectTypeQRCode
    _output.metadataObjectTypes =@[AVMetadataObjectTypeQRCode];
    
    // Preview
    _preview =[AVCaptureVideoPreviewLayer layerWithSession:_session];
    _preview.videoGravity =AVLayerVideoGravityResize;
    _preview.frame =[QRUtil screenBounds];
    [self.view.layer insertSublayer:_preview atIndex:0];
    
    _preview.connection.videoOrientation = [QRUtil videoOrientationFromCurrentDeviceOrientation];
    
    [_session startRunning];
}

- (void)stopRunning {
    
    [_preview removeFromSuperlayer];
    [_session stopRunning];
    
}

#pragma mark QRViewDelegate
-(void)scanTypeConfig:(QRItem *)item {
    
    if (item.type == QRItemTypeQRCode) {
        _output.metadataObjectTypes =@[AVMetadataObjectTypeQRCode];
        
    } else if (item.type == QRItemTypeOther) {
        
        _output.metadataObjectTypes = @[AVMetadataObjectTypeEAN13Code,
                                        AVMetadataObjectTypeEAN8Code,
                                        AVMetadataObjectTypeCode128Code,
                                        AVMetadataObjectTypeQRCode];
    }
}
#pragma mark AVCaptureMetadataOutputObjectsDelegate
- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection
{
    NSString *stringValue = @"";
    if ([metadataObjects count] >0)
    {
        //停止扫描
        [_session stopRunning];
        AVMetadataMachineReadableCodeObject * metadataObject = [metadataObjects objectAtIndex:0];
        stringValue = metadataObject.stringValue;
    }
    
    self.urlString = stringValue;
    
    NSLog(@" 扫描后的url是:%@",stringValue);
    
    if (self.scanCompleteBlock) {
        self.scanCompleteBlock(stringValue);
    }
}


#pragma mark - Getter and Setter
-(UIButton *)backBtn {
    
    if (!_backBtn) {
        _backBtn = [UIButton buttonWithType:UIButtonTypeCustom];
        _backBtn.frame = CGRectMake(20, 20, 50, 50);
        [_backBtn setTitle:@"返回" forState:UIControlStateNormal];
        [_backBtn addTarget:self action:@selector(pop:) forControlEvents:UIControlEventTouchUpInside];
    }
    return _backBtn;
}


-(QRView *)qrView {
    
    if (!_qrView) {
        
        CGRect screenRect = [QRUtil screenBounds];
        _qrView = [[QRView alloc] initWithFrame:screenRect];
        _qrView.transparentArea = CGSizeMake(200, 200);
        
        _qrView.backgroundColor = [UIColor clearColor];
        _qrView.delegate = self;
    }
    return _qrView;
}

@end


================================================
FILE: Example/DDQRCode/DDViewController.h
================================================
//
//  DDViewController.h
//  DDQRCode
//
//  Created by lcd on 06/10/2016.
//  Copyright (c) 2016 lcd. All rights reserved.
//


#import <UIKit/UIKit.h>


@interface DDViewController : UIViewController


@end



================================================
FILE: Example/DDQRCode/DDViewController.m
================================================
//
//  DDViewController.m
//  DDQRCode
//
//  Created by lcd on 06/10/2016.
//  Copyright (c) 2016 lcd. All rights reserved.
//

#import "DDViewController.h"
#import <AVFoundation/AVFoundation.h>
#import "DDQRCodeViewController.h"
#import "DDPhotoQRCodeViewController.h"


@interface DDViewController ()

@end

@implementation DDViewController

-(void)viewDidLoad {
    
    [super viewDidLoad];
    
}

- (IBAction)openQR:(id)sender {
    
    if ([self validateCamera] && [self canUseCamera]) {
        
        [self showQRViewController];
        
    } else {
        
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"提示" message:@"没有摄像头或摄像头不可用" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];
        [alertView show];
    }
}
- (IBAction)readPhotoQR:(id)sender {
    
    if ([[UIDevice currentDevice].systemVersion floatValue] < 8.0) {
        
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"提示" message:@"这个功能必须8.0系统之后才能使用" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];
        [alertView show];
        return;
    }
    
    [self showPhotoQRViewController];
}

-(BOOL)canUseCamera {
    
    NSString *mediaType = AVMediaTypeVideo;
    AVAuthorizationStatus authStatus = [AVCaptureDevice authorizationStatusForMediaType:mediaType];
    if(authStatus == AVAuthorizationStatusRestricted || authStatus == AVAuthorizationStatusDenied){
        
        NSLog(@"相机权限受限");
        
        UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"提示" message:@"请在设备的设置-隐私-相机中允许访问相机。" delegate:self cancelButtonTitle:@"确定" otherButtonTitles:nil, nil];
        [alertView show];
        return NO;
    }
    
    return YES;
}

-(BOOL)validateCamera {
    
    return [UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera] &&
    [UIImagePickerController isCameraDeviceAvailable:UIImagePickerControllerCameraDeviceRear];
}


- (void)showQRViewController {
    
    DDQRCodeViewController *vc = [[DDQRCodeViewController alloc] initWithScanCompleteHandler:^(NSString *url) {
    }];
    
    [self.navigationController pushViewController:vc animated:YES];
}

- (void)showPhotoQRViewController {
    
    DDPhotoQRCodeViewController *vc = [[DDPhotoQRCodeViewController alloc] init];
    [self.navigationController pushViewController:vc animated:YES];
}

@end


================================================
FILE: Example/DDQRCode/Images.xcassets/AppIcon.appiconset/Contents.json
================================================
{
  "images" : [
    {
      "idiom" : "iphone",
      "size" : "29x29",
      "scale" : "2x"
    },
    {
      "idiom" : "iphone",
      "size" : "40x40",
      "scale" : "2x"
    },
    {
      "idiom" : "iphone",
      "size" : "60x60",
      "scale" : "2x"
    },
    {
      "idiom" : "ipad",
      "size" : "29x29",
      "scale" : "1x"
    },
    {
      "idiom" : "ipad",
      "size" : "29x29",
      "scale" : "2x"
    },
    {
      "idiom" : "ipad",
      "size" : "40x40",
      "scale" : "1x"
    },
    {
      "idiom" : "ipad",
      "size" : "40x40",
      "scale" : "2x"
    },
    {
      "idiom" : "ipad",
      "size" : "76x76",
      "scale" : "1x"
    },
    {
      "idiom" : "ipad",
      "size" : "76x76",
      "scale" : "2x"
    }
  ],
  "info" : {
    "version" : 1,
    "author" : "xcode"
  }
}


================================================
FILE: Example/DDQRCode/Images.xcassets/LaunchImage.launchimage/Contents.json
================================================
{
  "images" : [
    {
      "orientation" : "portrait",
      "idiom" : "iphone",
      "extent" : "full-screen",
      "minimum-system-version" : "7.0",
      "scale" : "2x"
    },
    {
      "orientation" : "portrait",
      "idiom" : "iphone",
      "subtype" : "retina4",
      "extent" : "full-screen",
      "minimum-system-version" : "7.0",
      "scale" : "2x"
    },
    {
      "orientation" : "portrait",
      "idiom" : "ipad",
      "extent" : "full-screen",
      "minimum-system-version" : "7.0",
      "scale" : "1x"
    },
    {
      "orientation" : "landscape",
      "idiom" : "ipad",
      "extent" : "full-screen",
      "minimum-system-version" : "7.0",
      "scale" : "1x"
    },
    {
      "orientation" : "portrait",
      "idiom" : "ipad",
      "extent" : "full-screen",
      "minimum-system-version" : "7.0",
      "scale" : "2x"
    },
    {
      "orientation" : "landscape",
      "idiom" : "ipad",
      "extent" : "full-screen",
      "minimum-system-version" : "7.0",
      "scale" : "2x"
    }
  ],
  "info" : {
    "version" : 1,
    "author" : "xcode"
  }
}


================================================
FILE: Example/DDQRCode/Main.storyboard
================================================
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15C50" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="olQ-W1-zfl">
    <dependencies>
        <deployment identifier="iOS"/>
        <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
    </dependencies>
    <scenes>
        <!--View Controller-->
        <scene sceneID="wQg-tq-qST">
            <objects>
                <viewController id="whP-gf-Uak" customClass="DDViewController" sceneMemberID="viewController">
                    <layoutGuides>
                        <viewControllerLayoutGuide type="top" id="uEw-UM-LJ8"/>
                        <viewControllerLayoutGuide type="bottom" id="Mvr-aV-6Um"/>
                    </layoutGuides>
                    <view key="view" contentMode="scaleToFill" id="TpU-gO-2f1">
                        <rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                        <subviews>
                            <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="o1N-Id-4Wc">
                                <rect key="frame" x="252" y="158" width="99" height="30"/>
                                <state key="normal" title="Open QRCode"/>
                                <connections>
                                    <action selector="openQR:" destination="whP-gf-Uak" eventType="touchUpInside" id="FIk-zt-mRN"/>
                                </connections>
                            </button>
                            <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="CtX-ku-mHZ">
                                <rect key="frame" x="229.5" y="230" width="141" height="30"/>
                                <state key="normal" title="Read Photo QRCode"/>
                                <connections>
                                    <action selector="readPhotoQR:" destination="whP-gf-Uak" eventType="touchUpInside" id="4ry-JP-r1N"/>
                                </connections>
                            </button>
                        </subviews>
                        <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
                        <constraints>
                            <constraint firstItem="o1N-Id-4Wc" firstAttribute="top" secondItem="uEw-UM-LJ8" secondAttribute="bottom" constant="94" id="2oT-AO-79b"/>
                            <constraint firstItem="CtX-ku-mHZ" firstAttribute="top" secondItem="o1N-Id-4Wc" secondAttribute="bottom" constant="42" id="69v-0h-jNK"/>
                            <constraint firstItem="CtX-ku-mHZ" firstAttribute="centerX" secondItem="TpU-gO-2f1" secondAttribute="centerX" id="840-2w-CsM"/>
                            <constraint firstItem="o1N-Id-4Wc" firstAttribute="centerX" secondItem="TpU-gO-2f1" secondAttribute="centerX" constant="1.5" id="pMr-nl-Eh6"/>
                        </constraints>
                    </view>
                    <navigationItem key="navigationItem" id="BAd-WB-ssd"/>
                </viewController>
                <placeholder placeholderIdentifier="IBFirstResponder" id="tc2-Qw-aMS" userLabel="First Responder" sceneMemberID="firstResponder"/>
            </objects>
            <point key="canvasLocation" x="1117" y="433"/>
        </scene>
        <!--Navigation Controller-->
        <scene sceneID="svC-rm-a6C">
            <objects>
                <navigationController automaticallyAdjustsScrollViewInsets="NO" id="olQ-W1-zfl" sceneMemberID="viewController">
                    <toolbarItems/>
                    <navigationBar key="navigationBar" contentMode="scaleToFill" id="a50-KH-7sP">
                        <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
                        <autoresizingMask key="autoresizingMask"/>
                    </navigationBar>
                    <nil name="viewControllers"/>
                    <connections>
                        <segue destination="whP-gf-Uak" kind="relationship" relationship="rootViewController" id="geg-Il-MMG"/>
                    </connections>
                </navigationController>
                <placeholder placeholderIdentifier="IBFirstResponder" id="XPP-N1-5Dn" userLabel="First Responder" sceneMemberID="firstResponder"/>
            </objects>
            <point key="canvasLocation" x="305" y="433"/>
        </scene>
        <!--View Controller-->
        <scene sceneID="xEG-ij-Eh9">
            <objects>
                <viewController id="jxD-zG-RUv" sceneMemberID="viewController">
                    <layoutGuides>
                        <viewControllerLayoutGuide type="top" id="3ed-sh-E7M"/>
                        <viewControllerLayoutGuide type="bottom" id="CTA-1b-GhB"/>
                    </layoutGuides>
                    <view key="view" contentMode="scaleToFill" id="Vf0-Nz-F5o">
                        <rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
                        <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
                        <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
                    </view>
                </viewController>
                <placeholder placeholderIdentifier="IBFirstResponder" id="smg-eV-P3J" userLabel="First Responder" sceneMemberID="firstResponder"/>
            </objects>
            <point key="canvasLocation" x="418" y="1107"/>
        </scene>
    </scenes>
</document>


================================================
FILE: Example/DDQRCode/en.lproj/InfoPlist.strings
================================================
/* Localized versions of Info.plist keys */



================================================
FILE: Example/DDQRCode/main.m
================================================
//
//  main.m
//  DDQRCode
//
//  Created by lcd on 06/10/2016.
//  Copyright (c) 2016 lcd. All rights reserved.
//

@import UIKit;
#import "DDAppDelegate.h"

int main(int argc, char * argv[])
{
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([DDAppDelegate class]));
    }
}


================================================
FILE: Example/DDQRCode.xcodeproj/project.pbxproj
================================================
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		06A210ED926E41A8C914AE50 /* Pods_DDQRCode_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BB0CF0B025E1229812BFF732 /* Pods_DDQRCode_Example.framework */; };
		6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
		6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; };
		6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
		6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; };
		6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; };
		6003F59E195388D20070C39A /* DDAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* DDAppDelegate.m */; };
		6003F5A7195388D20070C39A /* DDViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* DDViewController.m */; };
		6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; };
		6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; };
		6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; };
		6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; };
		6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; };
		6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; };
		642C9DF71D0B0E6B00241CF4 /* DDQRCodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 642C9DF61D0B0E6B00241CF4 /* DDQRCodeViewController.m */; };
		642C9DFB1D0B0E9400241CF4 /* DDPhotoQRCodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 642C9DFA1D0B0E9400241CF4 /* DDPhotoQRCodeViewController.m */; };
		642C9E271D0B17DD00241CF4 /* qr_scan_line@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 642C9E241D0B17DD00241CF4 /* qr_scan_line@2x.png */; };
		642C9E281D0B17DD00241CF4 /* QRCode@2x.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 642C9E251D0B17DD00241CF4 /* QRCode@2x.jpg */; };
		642C9E291D0B17DD00241CF4 /* QRView.PNG in Resources */ = {isa = PBXBuildFile; fileRef = 642C9E261D0B17DD00241CF4 /* QRView.PNG */; };
		873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = 6003F582195388D10070C39A /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 6003F589195388D20070C39A;
			remoteInfo = DDQRCode;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		6003F58A195388D20070C39A /* DDQRCode_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DDQRCode_Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
		6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
		6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
		6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
		6003F595195388D20070C39A /* DDQRCode-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "DDQRCode-Info.plist"; sourceTree = "<group>"; };
		6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
		6003F59B195388D20070C39A /* DDQRCode-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "DDQRCode-Prefix.pch"; sourceTree = "<group>"; };
		6003F59C195388D20070C39A /* DDAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DDAppDelegate.h; sourceTree = "<group>"; };
		6003F59D195388D20070C39A /* DDAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DDAppDelegate.m; sourceTree = "<group>"; };
		6003F5A5195388D20070C39A /* DDViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DDViewController.h; sourceTree = "<group>"; };
		6003F5A6195388D20070C39A /* DDViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DDViewController.m; sourceTree = "<group>"; };
		6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
		6003F5AE195388D20070C39A /* DDQRCode_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DDQRCode_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
		6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
		6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = "<group>"; };
		6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
		6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = "<group>"; };
		606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = "<group>"; };
		642C9DF51D0B0E6B00241CF4 /* DDQRCodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDQRCodeViewController.h; sourceTree = "<group>"; };
		642C9DF61D0B0E6B00241CF4 /* DDQRCodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDQRCodeViewController.m; sourceTree = "<group>"; };
		642C9DF91D0B0E9400241CF4 /* DDPhotoQRCodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDPhotoQRCodeViewController.h; sourceTree = "<group>"; };
		642C9DFA1D0B0E9400241CF4 /* DDPhotoQRCodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDPhotoQRCodeViewController.m; sourceTree = "<group>"; };
		642C9E241D0B17DD00241CF4 /* qr_scan_line@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "qr_scan_line@2x.png"; sourceTree = "<group>"; };
		642C9E251D0B17DD00241CF4 /* QRCode@2x.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = "QRCode@2x.jpg"; sourceTree = "<group>"; };
		642C9E261D0B17DD00241CF4 /* QRView.PNG */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = QRView.PNG; sourceTree = "<group>"; };
		86841194CD9B237671DAE4CB /* Pods-DDQRCode_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DDQRCode_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example.debug.xcconfig"; sourceTree = "<group>"; };
		873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
		8A043EAD419DB8942109BC91 /* Pods_DDQRCode_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DDQRCode_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		BB0CF0B025E1229812BFF732 /* Pods_DDQRCode_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DDQRCode_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		BB999A4A495FDC4BEB656D1D /* Pods-DDQRCode_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DDQRCode_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example.release.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		6003F587195388D20070C39A /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */,
				6003F592195388D20070C39A /* UIKit.framework in Frameworks */,
				6003F58E195388D20070C39A /* Foundation.framework in Frameworks */,
				06A210ED926E41A8C914AE50 /* Pods_DDQRCode_Example.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		6003F5AB195388D20070C39A /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */,
				6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */,
				6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		6003F581195388D10070C39A = {
			isa = PBXGroup;
			children = (
				642C9E231D0B17DD00241CF4 /* Resource */,
				6003F593195388D20070C39A /* Example for DDQRCode */,
				6003F5B5195388D20070C39A /* Tests */,
				6003F58C195388D20070C39A /* Frameworks */,
				6003F58B195388D20070C39A /* Products */,
				A9B453CF4F1E8947854B64B7 /* Pods */,
			);
			sourceTree = "<group>";
		};
		6003F58B195388D20070C39A /* Products */ = {
			isa = PBXGroup;
			children = (
				6003F58A195388D20070C39A /* DDQRCode_Example.app */,
				6003F5AE195388D20070C39A /* DDQRCode_Tests.xctest */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		6003F58C195388D20070C39A /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				6003F58D195388D20070C39A /* Foundation.framework */,
				6003F58F195388D20070C39A /* CoreGraphics.framework */,
				6003F591195388D20070C39A /* UIKit.framework */,
				6003F5AF195388D20070C39A /* XCTest.framework */,
				BB0CF0B025E1229812BFF732 /* Pods_DDQRCode_Example.framework */,
				8A043EAD419DB8942109BC91 /* Pods_DDQRCode_Tests.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		6003F593195388D20070C39A /* Example for DDQRCode */ = {
			isa = PBXGroup;
			children = (
				6003F59C195388D20070C39A /* DDAppDelegate.h */,
				6003F59D195388D20070C39A /* DDAppDelegate.m */,
				873B8AEA1B1F5CCA007FD442 /* Main.storyboard */,
				6003F5A5195388D20070C39A /* DDViewController.h */,
				6003F5A6195388D20070C39A /* DDViewController.m */,
				642C9DF41D0B0E4600241CF4 /* OpenQRCode */,
				642C9DF81D0B0E7800241CF4 /* Read Photo QRCode */,
				6003F5A8195388D20070C39A /* Images.xcassets */,
				6003F594195388D20070C39A /* Supporting Files */,
			);
			name = "Example for DDQRCode";
			path = DDQRCode;
			sourceTree = "<group>";
		};
		6003F594195388D20070C39A /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				6003F595195388D20070C39A /* DDQRCode-Info.plist */,
				6003F596195388D20070C39A /* InfoPlist.strings */,
				6003F599195388D20070C39A /* main.m */,
				6003F59B195388D20070C39A /* DDQRCode-Prefix.pch */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		6003F5B5195388D20070C39A /* Tests */ = {
			isa = PBXGroup;
			children = (
				6003F5BB195388D20070C39A /* Tests.m */,
				6003F5B6195388D20070C39A /* Supporting Files */,
			);
			path = Tests;
			sourceTree = "<group>";
		};
		6003F5B6195388D20070C39A /* Supporting Files */ = {
			isa = PBXGroup;
			children = (
				6003F5B7195388D20070C39A /* Tests-Info.plist */,
				6003F5B8195388D20070C39A /* InfoPlist.strings */,
				606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */,
			);
			name = "Supporting Files";
			sourceTree = "<group>";
		};
		642C9DF41D0B0E4600241CF4 /* OpenQRCode */ = {
			isa = PBXGroup;
			children = (
				642C9DF51D0B0E6B00241CF4 /* DDQRCodeViewController.h */,
				642C9DF61D0B0E6B00241CF4 /* DDQRCodeViewController.m */,
			);
			name = OpenQRCode;
			sourceTree = "<group>";
		};
		642C9DF81D0B0E7800241CF4 /* Read Photo QRCode */ = {
			isa = PBXGroup;
			children = (
				642C9DF91D0B0E9400241CF4 /* DDPhotoQRCodeViewController.h */,
				642C9DFA1D0B0E9400241CF4 /* DDPhotoQRCodeViewController.m */,
			);
			name = "Read Photo QRCode";
			sourceTree = "<group>";
		};
		642C9E231D0B17DD00241CF4 /* Resource */ = {
			isa = PBXGroup;
			children = (
				642C9E241D0B17DD00241CF4 /* qr_scan_line@2x.png */,
				642C9E251D0B17DD00241CF4 /* QRCode@2x.jpg */,
				642C9E261D0B17DD00241CF4 /* QRView.PNG */,
			);
			path = Resource;
			sourceTree = "<group>";
		};
		A9B453CF4F1E8947854B64B7 /* Pods */ = {
			isa = PBXGroup;
			children = (
				86841194CD9B237671DAE4CB /* Pods-DDQRCode_Example.debug.xcconfig */,
				BB999A4A495FDC4BEB656D1D /* Pods-DDQRCode_Example.release.xcconfig */,
			);
			name = Pods;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		6003F589195388D20070C39A /* DDQRCode_Example */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "DDQRCode_Example" */;
			buildPhases = (
				35331B58ABB2D736DB7553F0 /* [CP] Check Pods Manifest.lock */,
				6003F586195388D20070C39A /* Sources */,
				6003F587195388D20070C39A /* Frameworks */,
				6003F588195388D20070C39A /* Resources */,
				9007C0B3B63E4E24BF000221 /* [CP] Embed Pods Frameworks */,
				12F75347D737C85ED80DFD98 /* [CP] Copy Pods Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = DDQRCode_Example;
			productName = DDQRCode;
			productReference = 6003F58A195388D20070C39A /* DDQRCode_Example.app */;
			productType = "com.apple.product-type.application";
		};
		6003F5AD195388D20070C39A /* DDQRCode_Tests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "DDQRCode_Tests" */;
			buildPhases = (
				C222FA7E68D02F50936F1878 /* [CP] Check Pods Manifest.lock */,
				6003F5AA195388D20070C39A /* Sources */,
				6003F5AB195388D20070C39A /* Frameworks */,
				6003F5AC195388D20070C39A /* Resources */,
				6031D9F2F064AAC81B6B7780 /* [CP] Embed Pods Frameworks */,
				8F8E43093BB65F48250BBC4F /* [CP] Copy Pods Resources */,
			);
			buildRules = (
			);
			dependencies = (
				6003F5B4195388D20070C39A /* PBXTargetDependency */,
			);
			name = DDQRCode_Tests;
			productName = DDQRCodeTests;
			productReference = 6003F5AE195388D20070C39A /* DDQRCode_Tests.xctest */;
			productType = "com.apple.product-type.bundle.unit-test";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		6003F582195388D10070C39A /* Project object */ = {
			isa = PBXProject;
			attributes = {
				CLASSPREFIX = DD;
				LastUpgradeCheck = 0720;
				ORGANIZATIONNAME = lcd;
				TargetAttributes = {
					6003F5AD195388D20070C39A = {
						TestTargetID = 6003F589195388D20070C39A;
					};
				};
			};
			buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "DDQRCode" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = 6003F581195388D10070C39A;
			productRefGroup = 6003F58B195388D20070C39A /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				6003F589195388D20070C39A /* DDQRCode_Example */,
				6003F5AD195388D20070C39A /* DDQRCode_Tests */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		6003F588195388D20070C39A /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				642C9E271D0B17DD00241CF4 /* qr_scan_line@2x.png in Resources */,
				873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */,
				6003F5A9195388D20070C39A /* Images.xcassets in Resources */,
				642C9E291D0B17DD00241CF4 /* QRView.PNG in Resources */,
				642C9E281D0B17DD00241CF4 /* QRCode@2x.jpg in Resources */,
				6003F598195388D20070C39A /* InfoPlist.strings in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		6003F5AC195388D20070C39A /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		12F75347D737C85ED80DFD98 /* [CP] Copy Pods Resources */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "[CP] Copy Pods Resources";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-resources.sh\"\n";
			showEnvVarsInLog = 0;
		};
		35331B58ABB2D736DB7553F0 /* [CP] Check Pods Manifest.lock */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "[CP] Check Pods Manifest.lock";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n    cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n    exit 1\nfi\n";
			showEnvVarsInLog = 0;
		};
		6031D9F2F064AAC81B6B7780 /* [CP] Embed Pods Frameworks */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "[CP] Embed Pods Frameworks";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-DDQRCode_Tests/Pods-DDQRCode_Tests-frameworks.sh\"\n";
			showEnvVarsInLog = 0;
		};
		8F8E43093BB65F48250BBC4F /* [CP] Copy Pods Resources */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "[CP] Copy Pods Resources";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-DDQRCode_Tests/Pods-DDQRCode_Tests-resources.sh\"\n";
			showEnvVarsInLog = 0;
		};
		9007C0B3B63E4E24BF000221 /* [CP] Embed Pods Frameworks */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "[CP] Embed Pods Frameworks";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-frameworks.sh\"\n";
			showEnvVarsInLog = 0;
		};
		C222FA7E68D02F50936F1878 /* [CP] Check Pods Manifest.lock */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputPaths = (
			);
			name = "[CP] Check Pods Manifest.lock";
			outputPaths = (
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n    cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n    exit 1\nfi\n";
			showEnvVarsInLog = 0;
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		6003F586195388D20070C39A /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				642C9DF71D0B0E6B00241CF4 /* DDQRCodeViewController.m in Sources */,
				642C9DFB1D0B0E9400241CF4 /* DDPhotoQRCodeViewController.m in Sources */,
				6003F59E195388D20070C39A /* DDAppDelegate.m in Sources */,
				6003F5A7195388D20070C39A /* DDViewController.m in Sources */,
				6003F59A195388D20070C39A /* main.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		6003F5AA195388D20070C39A /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				6003F5BC195388D20070C39A /* Tests.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		6003F5B4195388D20070C39A /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			target = 6003F589195388D20070C39A /* DDQRCode_Example */;
			targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
		6003F596195388D20070C39A /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				6003F597195388D20070C39A /* en */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
		6003F5B8195388D20070C39A /* InfoPlist.strings */ = {
			isa = PBXVariantGroup;
			children = (
				6003F5B9195388D20070C39A /* en */,
			);
			name = InfoPlist.strings;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		6003F5BD195388D20070C39A /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = NO;
				ENABLE_TESTABILITY = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.3;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = Debug;
		};
		6003F5BE195388D20070C39A /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				COPY_PHASE_STRIP = YES;
				ENABLE_NS_ASSERTIONS = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.3;
				SDKROOT = iphoneos;
				TARGETED_DEVICE_FAMILY = "1,2";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		6003F5C0195388D20070C39A /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 86841194CD9B237671DAE4CB /* Pods-DDQRCode_Example.debug.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
				ENABLE_BITCODE = NO;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "DDQRCode/DDQRCode-Prefix.pch";
				INFOPLIST_FILE = "DDQRCode/DDQRCode-Info.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				MODULE_NAME = ExampleApp;
				PRODUCT_BUNDLE_IDENTIFIER = com.lcddhr.DDQRCode;
				PRODUCT_NAME = "$(TARGET_NAME)";
				WRAPPER_EXTENSION = app;
			};
			name = Debug;
		};
		6003F5C1195388D20070C39A /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = BB999A4A495FDC4BEB656D1D /* Pods-DDQRCode_Example.release.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
				ENABLE_BITCODE = NO;
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "DDQRCode/DDQRCode-Prefix.pch";
				INFOPLIST_FILE = "DDQRCode/DDQRCode-Info.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				MODULE_NAME = ExampleApp;
				PRODUCT_BUNDLE_IDENTIFIER = com.lcddhr.DDQRCode;
				PRODUCT_NAME = "$(TARGET_NAME)";
				WRAPPER_EXTENSION = app;
			};
			name = Release;
		};
		6003F5C3195388D20070C39A /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				BUNDLE_LOADER = "$(TEST_HOST)";
				FRAMEWORK_SEARCH_PATHS = (
					"$(SDKROOT)/Developer/Library/Frameworks",
					"$(inherited)",
					"$(DEVELOPER_FRAMEWORKS_DIR)",
				);
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				INFOPLIST_FILE = "Tests/Tests-Info.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 7.0;
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DDQRCode_Example.app/DDQRCode_Example";
				WRAPPER_EXTENSION = xctest;
			};
			name = Debug;
		};
		6003F5C4195388D20070C39A /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				BUNDLE_LOADER = "$(TEST_HOST)";
				FRAMEWORK_SEARCH_PATHS = (
					"$(SDKROOT)/Developer/Library/Frameworks",
					"$(inherited)",
					"$(DEVELOPER_FRAMEWORKS_DIR)",
				);
				GCC_PRECOMPILE_PREFIX_HEADER = YES;
				GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch";
				INFOPLIST_FILE = "Tests/Tests-Info.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 7.0;
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = "$(TARGET_NAME)";
				TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DDQRCode_Example.app/DDQRCode_Example";
				WRAPPER_EXTENSION = xctest;
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		6003F585195388D10070C39A /* Build configuration list for PBXProject "DDQRCode" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				6003F5BD195388D20070C39A /* Debug */,
				6003F5BE195388D20070C39A /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "DDQRCode_Example" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				6003F5C0195388D20070C39A /* Debug */,
				6003F5C1195388D20070C39A /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "DDQRCode_Tests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				6003F5C3195388D20070C39A /* Debug */,
				6003F5C4195388D20070C39A /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 6003F582195388D10070C39A /* Project object */;
}


================================================
FILE: Example/DDQRCode.xcodeproj/project.xcworkspace/contents.xcworkspacedata
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
   version = "1.0">
   <FileRef
      location = "self:DDQRCode.xcodeproj">
   </FileRef>
</Workspace>


================================================
FILE: Example/DDQRCode.xcodeproj/xcshareddata/xcschemes/DDQRCode-Example.xcscheme
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
   LastUpgradeVersion = "0720"
   version = "1.3">
   <BuildAction
      parallelizeBuildables = "YES"
      buildImplicitDependencies = "YES">
      <BuildActionEntries>
         <BuildActionEntry
            buildForTesting = "YES"
            buildForRunning = "YES"
            buildForProfiling = "YES"
            buildForArchiving = "YES"
            buildForAnalyzing = "YES">
            <BuildableReference
               BuildableIdentifier = "primary"
               BlueprintIdentifier = "6003F589195388D20070C39A"
               BuildableName = "DDQRCode_Example.app"
               BlueprintName = "DDQRCode_Example"
               ReferencedContainer = "container:DDQRCode.xcodeproj">
            </BuildableReference>
         </BuildActionEntry>
      </BuildActionEntries>
   </BuildAction>
   <TestAction
      buildConfiguration = "Debug"
      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
      shouldUseLaunchSchemeArgsEnv = "YES">
      <Testables>
         <TestableReference
            skipped = "NO">
            <BuildableReference
               BuildableIdentifier = "primary"
               BlueprintIdentifier = "6003F5AD195388D20070C39A"
               BuildableName = "DDQRCode_Tests.xctest"
               BlueprintName = "DDQRCode_Tests"
               ReferencedContainer = "container:DDQRCode.xcodeproj">
            </BuildableReference>
         </TestableReference>
      </Testables>
      <MacroExpansion>
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "6003F589195388D20070C39A"
            BuildableName = "DDQRCode_Example.app"
            BlueprintName = "DDQRCode_Example"
            ReferencedContainer = "container:DDQRCode.xcodeproj">
         </BuildableReference>
      </MacroExpansion>
      <AdditionalOptions>
      </AdditionalOptions>
   </TestAction>
   <LaunchAction
      buildConfiguration = "Debug"
      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
      launchStyle = "0"
      useCustomWorkingDirectory = "NO"
      ignoresPersistentStateOnLaunch = "NO"
      debugDocumentVersioning = "YES"
      debugServiceExtension = "internal"
      allowLocationSimulation = "YES">
      <BuildableProductRunnable
         runnableDebuggingMode = "0">
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "6003F589195388D20070C39A"
            BuildableName = "DDQRCode_Example.app"
            BlueprintName = "DDQRCode_Example"
            ReferencedContainer = "container:DDQRCode.xcodeproj">
         </BuildableReference>
      </BuildableProductRunnable>
      <AdditionalOptions>
      </AdditionalOptions>
   </LaunchAction>
   <ProfileAction
      buildConfiguration = "Release"
      shouldUseLaunchSchemeArgsEnv = "YES"
      savedToolIdentifier = ""
      useCustomWorkingDirectory = "NO"
      debugDocumentVersioning = "YES">
      <BuildableProductRunnable
         runnableDebuggingMode = "0">
         <BuildableReference
            BuildableIdentifier = "primary"
            BlueprintIdentifier = "6003F589195388D20070C39A"
            BuildableName = "DDQRCode_Example.app"
            BlueprintName = "DDQRCode_Example"
            ReferencedContainer = "container:DDQRCode.xcodeproj">
         </BuildableReference>
      </BuildableProductRunnable>
   </ProfileAction>
   <AnalyzeAction
      buildConfiguration = "Debug">
   </AnalyzeAction>
   <ArchiveAction
      buildConfiguration = "Release"
      revealArchiveInOrganizer = "YES">
   </ArchiveAction>
</Scheme>


================================================
FILE: Example/DDQRCode.xcworkspace/contents.xcworkspacedata
================================================
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
   version = "1.0">
   <FileRef
      location = "group:DDQRCode.xcodeproj">
   </FileRef>
   <FileRef
      location = "group:Pods/Pods.xcodeproj">
   </FileRef>
</Workspace>


================================================
FILE: Example/Podfile
================================================

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
inhibit_all_warnings!

use_frameworks!

target 'DDQRCode_Example' do
#  pod 'DDQRCode', :path => '../DDQRCode'
pod 'DDQRCode', '~> 1.0.0'

#  target 'DDQRCode_Tests' do
#    inherit! :search_paths
#
#  end
end


================================================
FILE: Example/Pods/DDQRCode/DDQRCode/Classes/QRItem.h
================================================
//
//  QRItem.h
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/4/30.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import <UIKit/UIKit.h>


typedef NS_ENUM(NSUInteger, QRItemType) {
    QRItemTypeQRCode = 0,
    QRItemTypeOther,
};


@interface QRItem : UIButton

@property (nonatomic, assign) QRItemType type;

- (instancetype)initWithFrame:(CGRect)frame
                       titile:(NSString *)titile;
@end


================================================
FILE: Example/Pods/DDQRCode/DDQRCode/Classes/QRItem.m
================================================
//
//  QRItem.m
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/4/30.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import "QRItem.h"
#import <objc/runtime.h>

@implementation QRItem

- (instancetype)initWithFrame:(CGRect)frame
                       titile:(NSString *)titile{
    
    self =  [QRItem buttonWithType:UIButtonTypeSystem];
    if (self) {
        
        [self setTitle:titile forState:UIControlStateNormal];
        self.frame = frame;
    }
    return self;
}
@end


================================================
FILE: Example/Pods/DDQRCode/DDQRCode/Classes/QRMenu.h
================================================
//
//  QRMenu.h
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/4/30.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "QRItem.h"

typedef void(^QRMenuDidSelectedBlock)(QRItem *item);

@interface QRMenu : UIView

@property (nonatomic, copy) QRMenuDidSelectedBlock didSelectedBlock;

- (instancetype)initWithFrame:(CGRect)frame;
@end


================================================
FILE: Example/Pods/DDQRCode/DDQRCode/Classes/QRMenu.m
================================================
//
//  QRMenu.m
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/4/30.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import "QRMenu.h"

@implementation QRMenu

/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
    // Drawing code
}
*/

- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
     
        [self setupQRItem];
        
    }
    
    return self;
}

- (void)setupQRItem {
    
    QRItem *qrItem = [[QRItem alloc] initWithFrame:(CGRect){
        .origin.x = 0,
        .origin.y = 0,
        .size.width = self.bounds.size.width / 2,
        .size.height = self.bounds.size.height
    } titile:@"二维码扫描"];
    qrItem.type = QRItemTypeQRCode;
    [self addSubview:qrItem];
    
    QRItem *otherItem = [[QRItem alloc] initWithFrame: (CGRect){
        
        .origin.x = self.bounds.size.width / 2,
        .origin.y = 0,
        .size.width = self.bounds.size.width / 2,
        .size.height = self.bounds.size.height
    } titile:@"条形码扫描"];
    otherItem.type = QRItemTypeOther;
    [self addSubview:otherItem];
    
    [qrItem addTarget:self action:@selector(qrScan:) forControlEvents:UIControlEventTouchUpInside];
    [otherItem addTarget:self action:@selector(qrScan:) forControlEvents:UIControlEventTouchUpInside];
    
}


#pragma mark - Action

- (void)qrScan:(QRItem *)qrItem {
    
    if (self.didSelectedBlock) {
        
        self.didSelectedBlock(qrItem);
    }
}



@end


================================================
FILE: Example/Pods/DDQRCode/DDQRCode/Classes/QRUtil.h
================================================
//
//  QRUtil.h
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/10/9.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>

@interface QRUtil : NSObject

+ (CGRect)screenBounds;

+ (AVCaptureVideoOrientation) videoOrientationFromCurrentDeviceOrientation;
@end


================================================
FILE: Example/Pods/DDQRCode/DDQRCode/Classes/QRUtil.m
================================================
//
//  QRUtil.m
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/10/9.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import "QRUtil.h"


@implementation QRUtil


+ (CGRect)screenBounds {
    
    UIScreen *screen = [UIScreen mainScreen];
    CGRect screenRect;
    if (![screen respondsToSelector:@selector(fixedCoordinateSpace)] && UIInterfaceOrientationIsLandscape([UIApplication sharedApplication].statusBarOrientation)) {
//        screenRect = CGRectMake(screen.bounds.origin.x, screen.bounds.origin.y, screen.bounds.size.height, screen.bounds.size.width);
        screenRect = CGRectMake(0, 0, screen.bounds.size.height, screen.bounds.size.width);
    } else {
        screenRect = screen.bounds;
    }
    
    return screenRect;
    
}

+ (AVCaptureVideoOrientation) videoOrientationFromCurrentDeviceOrientation {
    
    UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation];
    if (orientation == UIInterfaceOrientationPortrait) {
        NSLog(@"UIInterfaceOrientationPortrait");
        return AVCaptureVideoOrientationPortrait;
        
    } else if (orientation == UIInterfaceOrientationLandscapeLeft) {
        NSLog(@"AVCaptureVideoOrientationLandscapeLeft");
        return AVCaptureVideoOrientationLandscapeLeft;
        
    } else if (orientation == UIInterfaceOrientationLandscapeRight){
        NSLog(@"UIInterfaceOrientationLandscapeRight");
        return AVCaptureVideoOrientationLandscapeRight;
    } else if (orientation == UIInterfaceOrientationPortraitUpsideDown) {
        
        NSLog(@"UIInterfaceOrientationPortraitUpsideDown");
        return AVCaptureVideoOrientationPortraitUpsideDown;
    }
    
    return AVCaptureVideoOrientationPortrait;
}
@end


================================================
FILE: Example/Pods/DDQRCode/DDQRCode/Classes/QRView.h
================================================
//
//  QRView.h
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/4/25.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "QRMenu.h"


@protocol QRViewDelegate <NSObject>

- (void)scanTypeConfig:(QRItem *)item;

@end
@interface QRView : UIView


@property (nonatomic, weak) id<QRViewDelegate> delegate;
/**
 *  透明的区域
 */
@property (nonatomic, assign) CGSize transparentArea;
@end


================================================
FILE: Example/Pods/DDQRCode/DDQRCode/Classes/QRView.m
================================================
//
//  QRView.m
//  QRWeiXinDemo
//
//  Created by lovelydd on 15/4/25.
//  Copyright (c) 2015年 lovelydd. All rights reserved.
//

#import "QRView.h"
#import "QRUtil.h"

static NSTimeInterval kQrLineanimateDuration = 0.02;

@implementation QRView {

        UIImageView *qrLine;
        CGFloat qrLineY;
        QRMenu *qrMenu;
}

- (instancetype)initWithFrame:(CGRect)frame {
    
    self = [super initWithFrame:frame];
    if (self) {
        
        
        
    }
    return self;
}


- (void)layoutSubviews {
    
    [super layoutSubviews];
    if (!qrLine) {
        
        [self initQRLine];
        
        NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:kQrLineanimateDuration target:self selector:@selector(show) userInfo:nil repeats:YES];
        [timer fire];
    }
    
    if (!qrMenu) {
        [self initQrMenu];
    }
}

- (void)initQRLine {
    
    
    CGRect screenBounds = [QRUtil screenBounds];
    qrLine  = [[UIImageView alloc] initWithFrame:CGRectMake(screenBounds.size.width / 2 - self.transparentArea.width / 2, screenBounds.size.height / 2 - self.transparentArea.height / 2, self.transparentArea.width, 2)];
    qrLine.image = [UIImage imageNamed:@"qr_scan_line"];
    qrLine.contentMode = UIViewContentModeScaleAspectFill;
    [self addSubview:qrLine];
    qrLineY = qrLine.frame.origin.y;
}

- (void)initQrMenu {
    
    CGFloat height = 100;
    CGFloat width = [QRUtil screenBounds].size.width;
    qrMenu = [[QRMenu alloc] initWithFrame:CGRectMake(0, [QRUtil screenBounds].size.height - height, width, height)];
    qrMenu.backgroundColor = [UIColor grayColor];
    [self addSubview:qrMenu];
    
    __weak typeof(self)weakSelf = self;

    qrMenu.didSelectedBlock = ^(QRItem *item){
        
        NSLog(@"点击的是%lu",(unsigned long)item.type);
        
        if ([weakSelf.delegate respondsToSelector:@selector(scanTypeConfig:)] ) {
            
            [weakSelf.delegate scanTypeConfig:item];
        }
    };
}

- (void)show {
    
    [UIView animateWithDuration:kQrLineanimateDuration animations:^{
        
        CGRect rect = qrLine.frame;
        rect.origin.y = qrLineY;
        qrLine.frame = rect;
        
    } completion:^(BOOL finished) {
        
        CGFloat maxBorder = self.frame.size.height / 2 + self.transparentArea.height / 2 - 4;
        if (qrLineY > maxBorder) {
            
            qrLineY = self.frame.size.height / 2 - self.transparentArea.height /2;
        }
        qrLineY++;
    }];
}

- (void)drawRect:(CGRect)rect {
    
    //整个二维码扫描界面的颜色
    CGSize screenSize =[QRUtil screenBounds].size;
    CGRect screenDrawRect =CGRectMake(0, 0, screenSize.width,screenSize.height);
    
    //中间清空的矩形框
    CGRect clearDrawRect = CGRectMake(screenDrawRect.size.width / 2 - self.transparentArea.width / 2,
                                      screenDrawRect.size.height / 2 - self.transparentArea.height / 2,
                                      self.transparentArea.width,self.transparentArea.height);
    
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    [self addScreenFillRect:ctx rect:screenDrawRect];
    
    [self addCenterClearRect:ctx rect:clearDrawRect];
    
    [self addWhiteRect:ctx rect:clearDrawRect];
    
    [self addCornerLineWithContext:ctx rect:clearDrawRect];
    
    
}

- (void)addScreenFillRect:(CGContextRef)ctx rect:(CGRect)rect {
    
    CGContextSetRGBFillColor(ctx, 40 / 255.0,40 / 255.0,40 / 255.0,0.5);
    CGContextFillRect(ctx, rect);   //draw the transparent layer
}

- (void)addCenterClearRect :(CGContextRef)ctx rect:(CGRect)rect {
    
    CGContextClearRect(ctx, rect);  //clear the center rect  of the layer
}

- (void)addWhiteRect:(CGContextRef)ctx rect:(CGRect)rect {
    
    CGContextStrokeRect(ctx, rect);
    CGContextSetRGBStrokeColor(ctx, 1, 1, 1, 1);
    CGContextSetLineWidth(ctx, 0.8);
    CGContextAddRect(ctx, rect);
    CGContextStrokePath(ctx);
}

- (void)addCornerLineWithContext:(CGContextRef)ctx rect:(CGRect)rect{
    
    //画四个边角
    CGContextSetLineWidth(ctx, 2);
    CGContextSetRGBStrokeColor(ctx, 83 /255.0, 239/255.0, 111/255.0, 1);//绿色
    
    //左上角
    CGPoint poinsTopLeftA[] = {
        CGPointMake(rect.origin.x+0.7, rect.origin.y),
        CGPointMake(rect.origin.x+0.7 , rect.origin.y + 15)
    };
    
    CGPoint poinsTopLeftB[] = {CGPointMake(rect.origin.x, rect.origin.y +0.7),CGPointMake(rect.origin.x + 15, rect.origin.y+0.7)};
    [self addLine:poinsTopLeftA pointB:poinsTopLeftB ctx:ctx];
    
    //左下角
    CGPoint poinsBottomLeftA[] = {CGPointMake(rect.origin.x+ 0.7, rect.origin.y + rect.size.height - 15),CGPointMake(rect.origin.x +0.7,rect.origin.y + rect.size.height)};
    CGPoint poinsBottomLeftB[] = {CGPointMake(rect.origin.x , rect.origin.y + rect.size.height - 0.7) ,CGPointMake(rect.origin.x+0.7 +15, rect.origin.y + rect.size.height - 0.7)};
    [self addLine:poinsBottomLeftA pointB:poinsBottomLeftB ctx:ctx];
    
    //右上角
    CGPoint poinsTopRightA[] = {CGPointMake(rect.origin.x+ rect.size.width - 15, rect.origin.y+0.7),CGPointMake(rect.origin.x + rect.size.width,rect.origin.y +0.7 )};
    CGPoint poinsTopRightB[] = {CGPointMake(rect.origin.x+ rect.size.width-0.7, rect.origin.y),CGPointMake(rect.origin.x + rect.size.width-0.7,rect.origin.y + 15 +0.7 )};
    [self addLine:poinsTopRightA pointB:poinsTopRightB ctx:ctx];
    
    CGPoint poinsBottomRightA[] = {CGPointMake(rect.origin.x+ rect.size.width -0.7 , rect.origin.y+rect.size.height+ -15),CGPointMake(rect.origin.x-0.7 + rect.size.width,rect.origin.y +rect.size.height )};
    CGPoint poinsBottomRightB[] = {CGPointMake(rect.origin.x+ rect.size.width - 15 , rect.origin.y + rect.size.height-0.7),CGPointMake(rect.origin.x + rect.size.width,rect.origin.y + rect.size.height - 0.7 )};
    [self addLine:poinsBottomRightA pointB:poinsBottomRightB ctx:ctx];
    CGContextStrokePath(ctx);
}

- (void)addLine:(CGPoint[])pointA pointB:(CGPoint[])pointB ctx:(CGContextRef)ctx {
    CGContextAddLines(ctx, pointA, 2);
    CGContextAddLines(ctx, pointB, 2);
}


@end


================================================
FILE: Example/Pods/DDQRCode/LICENSE
================================================
Copyright (c) 2016 lcd <lcddhr@qq.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.


================================================
FILE: Example/Pods/DDQRCode/README.md
================================================
# DDQRCode

[![CI Status](http://img.shields.io/travis/lcd/DDQRCode.svg?style=flat)](https://travis-ci.org/lcd/DDQRCode)
[![Version](https://img.shields.io/cocoapods/v/DDQRCode.svg?style=flat)](http://cocoapods.org/pods/DDQRCode)
[![License](https://img.shields.io/cocoapods/l/DDQRCode.svg?style=flat)](http://cocoapods.org/pods/DDQRCode)
[![Platform](https://img.shields.io/cocoapods/p/DDQRCode.svg?style=flat)](http://cocoapods.org/pods/DDQRCode)

## Example

To run the example project, clone the repo, and run `pod install` from the Example directory first.

## Requirements

## Installation

DDQRCode is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:

```ruby
pod "DDQRCode"
```

## Author

lcd, lcddhr@qq.com

## License

DDQRCode is available under the MIT license. See the LICENSE file for more info.


================================================
FILE: Example/Pods/Local Podspecs/DDQRCode.podspec.json
================================================
{
  "name": "DDQRCode",
  "version": "0.1.0",
  "summary": "A short description of DDQRCode.",
  "description": "TODO: Add long description of the pod here.",
  "homepage": "https://github.com/<GITHUB_USERNAME>/DDQRCode",
  "license": {
    "type": "MIT",
    "file": "LICENSE"
  },
  "authors": {
    "lcd": "lcddhr@qq.com"
  },
  "source": {
    "git": "https://github.com/<GITHUB_USERNAME>/DDQRCode.git",
    "tag": "0.1.0"
  },
  "platforms": {
    "ios": "8.0"
  },
  "source_files": "DDQRCode/Classes/**/*"
}


================================================
FILE: Example/Pods/Pods.xcodeproj/project.pbxproj
================================================
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		0A6188731F2504684EFACA9EA5E93B21 /* QRItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A46F06E7C2D40E8D8B2A001163877A5 /* QRItem.h */; settings = {ATTRIBUTES = (Public, ); }; };
		1D61FE085D44068DEF851713387B22C8 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9ADFC5A4B2BBCFD9A27B7A059658E773 /* AVFoundation.framework */; };
		1DE5DEC0936079DF2EA222B8C2F2F945 /* Pods-DDQRCode_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C662FF2482B221A39858F71A4AA5ABB9 /* Pods-DDQRCode_Example-dummy.m */; };
		23F28AFDF684628D76677D53BED85EEA /* QRUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D11A804E4FE6C0CBD633258252ADBACB /* QRUtil.h */; settings = {ATTRIBUTES = (Public, ); }; };
		2D4374CABC427F65A339E0DB2674D223 /* QRView.h in Headers */ = {isa = PBXBuildFile; fileRef = 286F481CE83807A490CD3BFEC250B238 /* QRView.h */; settings = {ATTRIBUTES = (Public, ); }; };
		34223F286BD0EC0CD59AF95A00AFC58B /* QRView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FBE2882A363A63C1F6971C35B14341F /* QRView.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
		4B3BE5C5F2D434A4DA869BF10DBA9039 /* QRMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 143F5C26CE4B5956F15D088A10EE1A26 /* QRMenu.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5427A13AF54E1BF5F50D419874D9CC67 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3A41C04F9FB06B54E2A413E29A588B49 /* UIKit.framework */; };
		56A204DE79210A87AADCFDE939382457 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5422916563B77A748D40B022EAE1747C /* Foundation.framework */; };
		601FDB360CDB6E620FEB5D76580F99B4 /* DDQRCode-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C83403974A4EBEEED2E3815FF9C675DB /* DDQRCode-dummy.m */; };
		6B7E54154B44ADF3010911F9EBD57D88 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5422916563B77A748D40B022EAE1747C /* Foundation.framework */; };
		7547B4F54C5E83448CBA8872FB95B74D /* DDQRCode-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2730BB655C830381D3A5B4BF17DBD548 /* DDQRCode-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
		85ABF66101B8E2E4101A0DFC3BA8B611 /* QRMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C2276A9E20ACFD53091E42262A7A4E9 /* QRMenu.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
		989B24256750E263AC82D2FAFA9BFA8B /* QRUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = A0F2D01C405E01994BA9B23C0253DFD2 /* QRUtil.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
		9D826B352524F2D4B340C4778FED9A79 /* QRItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 38835314C88BDFD6BA48D735A590215D /* QRItem.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
		AEDC22A534AC6A40A8B395AAB6AB87F9 /* Pods-DDQRCode_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A790ED91388A9161E907CEC2282714E /* Pods-DDQRCode_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		732CDCD571D2DD526ECE17D7C9E14DA5 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 69B963F6554E7FC89400253FCE9F1D98;
			remoteInfo = DDQRCode;
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		0FBE2882A363A63C1F6971C35B14341F /* QRView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QRView.m; path = DDQRCode/Classes/QRView.m; sourceTree = "<group>"; };
		11B4A9005E09896EBA92C693D926D607 /* Pods-DDQRCode_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-DDQRCode_Example.modulemap"; sourceTree = "<group>"; };
		143F5C26CE4B5956F15D088A10EE1A26 /* QRMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QRMenu.h; path = DDQRCode/Classes/QRMenu.h; sourceTree = "<group>"; };
		1D2BCFEA9320F9B8E72F73AB39CBE193 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		2730BB655C830381D3A5B4BF17DBD548 /* DDQRCode-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDQRCode-umbrella.h"; sourceTree = "<group>"; };
		286F481CE83807A490CD3BFEC250B238 /* QRView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QRView.h; path = DDQRCode/Classes/QRView.h; sourceTree = "<group>"; };
		2EB83E14F045FB6D6234F39E5E7D88A8 /* DDQRCode.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DDQRCode.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		3173EAF712D0DFB740F8D7B76E100B50 /* Pods-DDQRCode_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-DDQRCode_Example-acknowledgements.plist"; sourceTree = "<group>"; };
		319145D1F6D62C610BF3FCD8A30C0478 /* Pods-DDQRCode_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DDQRCode_Example.debug.xcconfig"; sourceTree = "<group>"; };
		38835314C88BDFD6BA48D735A590215D /* QRItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QRItem.m; path = DDQRCode/Classes/QRItem.m; sourceTree = "<group>"; };
		3A41C04F9FB06B54E2A413E29A588B49 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
		3C195CD0A2FBFCEE832F88787FBC97FA /* DDQRCode.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DDQRCode.xcconfig; sourceTree = "<group>"; };
		3CB1084C35450B0058F4799240F6E92E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		4A25ECA1D0EB752C7159D20BA89E4CAE /* Pods-DDQRCode_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DDQRCode_Example.release.xcconfig"; sourceTree = "<group>"; };
		4F12AC4610A438057E6FE37E349739DF /* Pods-DDQRCode_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-DDQRCode_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
		5422916563B77A748D40B022EAE1747C /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
		5A46F06E7C2D40E8D8B2A001163877A5 /* QRItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QRItem.h; path = DDQRCode/Classes/QRItem.h; sourceTree = "<group>"; };
		5C2276A9E20ACFD53091E42262A7A4E9 /* QRMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QRMenu.m; path = DDQRCode/Classes/QRMenu.m; sourceTree = "<group>"; };
		71D413C50D9198AABEF09150A85FA6D3 /* Pods-DDQRCode_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-DDQRCode_Example-resources.sh"; sourceTree = "<group>"; };
		93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
		9A790ED91388A9161E907CEC2282714E /* Pods-DDQRCode_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DDQRCode_Example-umbrella.h"; sourceTree = "<group>"; };
		9ADFC5A4B2BBCFD9A27B7A059658E773 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/AVFoundation.framework; sourceTree = DEVELOPER_DIR; };
		9FA01DA8DA5FFEF35A6038723A561A57 /* DDQRCode-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DDQRCode-prefix.pch"; sourceTree = "<group>"; };
		A0F2D01C405E01994BA9B23C0253DFD2 /* QRUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QRUtil.m; path = DDQRCode/Classes/QRUtil.m; sourceTree = "<group>"; };
		C093FD659B21DC605E1E25D1D9688784 /* Pods-DDQRCode_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-DDQRCode_Example-frameworks.sh"; sourceTree = "<group>"; };
		C662FF2482B221A39858F71A4AA5ABB9 /* Pods-DDQRCode_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DDQRCode_Example-dummy.m"; sourceTree = "<group>"; };
		C83403974A4EBEEED2E3815FF9C675DB /* DDQRCode-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DDQRCode-dummy.m"; sourceTree = "<group>"; };
		D11A804E4FE6C0CBD633258252ADBACB /* QRUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QRUtil.h; path = DDQRCode/Classes/QRUtil.h; sourceTree = "<group>"; };
		E9EF24FCD5947CA84D6CB934E231A574 /* Pods_DDQRCode_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DDQRCode_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		EB3CE94231BC7F876E1E379976857128 /* DDQRCode.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = DDQRCode.modulemap; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		24BF43A649F9BF40689EE7B0E67A8B78 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				56A204DE79210A87AADCFDE939382457 /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		8C193F8D7B8977ECA88A87DC11C59C9A /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1D61FE085D44068DEF851713387B22C8 /* AVFoundation.framework in Frameworks */,
				6B7E54154B44ADF3010911F9EBD57D88 /* Foundation.framework in Frameworks */,
				5427A13AF54E1BF5F50D419874D9CC67 /* UIKit.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		122DA2E5084A4393C29BE363C764795C /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				CA648648317C71E5A4DA455C8D2DBA8E /* iOS */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		25951B848DBCCBF6F14C4958A83724FF /* Support Files */ = {
			isa = PBXGroup;
			children = (
				EB3CE94231BC7F876E1E379976857128 /* DDQRCode.modulemap */,
				3C195CD0A2FBFCEE832F88787FBC97FA /* DDQRCode.xcconfig */,
				C83403974A4EBEEED2E3815FF9C675DB /* DDQRCode-dummy.m */,
				9FA01DA8DA5FFEF35A6038723A561A57 /* DDQRCode-prefix.pch */,
				2730BB655C830381D3A5B4BF17DBD548 /* DDQRCode-umbrella.h */,
				1D2BCFEA9320F9B8E72F73AB39CBE193 /* Info.plist */,
			);
			name = "Support Files";
			path = "../Target Support Files/DDQRCode";
			sourceTree = "<group>";
		};
		696F5D50DD8D13E2D77E7C8208B0ABEB /* DDQRCode */ = {
			isa = PBXGroup;
			children = (
				5A46F06E7C2D40E8D8B2A001163877A5 /* QRItem.h */,
				38835314C88BDFD6BA48D735A590215D /* QRItem.m */,
				143F5C26CE4B5956F15D088A10EE1A26 /* QRMenu.h */,
				5C2276A9E20ACFD53091E42262A7A4E9 /* QRMenu.m */,
				D11A804E4FE6C0CBD633258252ADBACB /* QRUtil.h */,
				A0F2D01C405E01994BA9B23C0253DFD2 /* QRUtil.m */,
				286F481CE83807A490CD3BFEC250B238 /* QRView.h */,
				0FBE2882A363A63C1F6971C35B14341F /* QRView.m */,
				25951B848DBCCBF6F14C4958A83724FF /* Support Files */,
			);
			path = DDQRCode;
			sourceTree = "<group>";
		};
		7DB346D0F39D3F0E887471402A8071AB = {
			isa = PBXGroup;
			children = (
				93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
				122DA2E5084A4393C29BE363C764795C /* Frameworks */,
				7E5A1D5299A8AF66A616936C8C2F9457 /* Pods */,
				9729F6AC42D09B08D6A8DF37186F8504 /* Products */,
				C5BB945E3677C2DF33CF99FA6B3E7DA9 /* Targets Support Files */,
			);
			sourceTree = "<group>";
		};
		7E5A1D5299A8AF66A616936C8C2F9457 /* Pods */ = {
			isa = PBXGroup;
			children = (
				696F5D50DD8D13E2D77E7C8208B0ABEB /* DDQRCode */,
			);
			name = Pods;
			sourceTree = "<group>";
		};
		9729F6AC42D09B08D6A8DF37186F8504 /* Products */ = {
			isa = PBXGroup;
			children = (
				2EB83E14F045FB6D6234F39E5E7D88A8 /* DDQRCode.framework */,
				E9EF24FCD5947CA84D6CB934E231A574 /* Pods_DDQRCode_Example.framework */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		C5BB945E3677C2DF33CF99FA6B3E7DA9 /* Targets Support Files */ = {
			isa = PBXGroup;
			children = (
				D9E6B71AC7F3AE0DEF28770346F9A9AF /* Pods-DDQRCode_Example */,
			);
			name = "Targets Support Files";
			sourceTree = "<group>";
		};
		CA648648317C71E5A4DA455C8D2DBA8E /* iOS */ = {
			isa = PBXGroup;
			children = (
				9ADFC5A4B2BBCFD9A27B7A059658E773 /* AVFoundation.framework */,
				5422916563B77A748D40B022EAE1747C /* Foundation.framework */,
				3A41C04F9FB06B54E2A413E29A588B49 /* UIKit.framework */,
			);
			name = iOS;
			sourceTree = "<group>";
		};
		D9E6B71AC7F3AE0DEF28770346F9A9AF /* Pods-DDQRCode_Example */ = {
			isa = PBXGroup;
			children = (
				3CB1084C35450B0058F4799240F6E92E /* Info.plist */,
				11B4A9005E09896EBA92C693D926D607 /* Pods-DDQRCode_Example.modulemap */,
				4F12AC4610A438057E6FE37E349739DF /* Pods-DDQRCode_Example-acknowledgements.markdown */,
				3173EAF712D0DFB740F8D7B76E100B50 /* Pods-DDQRCode_Example-acknowledgements.plist */,
				C662FF2482B221A39858F71A4AA5ABB9 /* Pods-DDQRCode_Example-dummy.m */,
				C093FD659B21DC605E1E25D1D9688784 /* Pods-DDQRCode_Example-frameworks.sh */,
				71D413C50D9198AABEF09150A85FA6D3 /* Pods-DDQRCode_Example-resources.sh */,
				9A790ED91388A9161E907CEC2282714E /* Pods-DDQRCode_Example-umbrella.h */,
				319145D1F6D62C610BF3FCD8A30C0478 /* Pods-DDQRCode_Example.debug.xcconfig */,
				4A25ECA1D0EB752C7159D20BA89E4CAE /* Pods-DDQRCode_Example.release.xcconfig */,
			);
			name = "Pods-DDQRCode_Example";
			path = "Target Support Files/Pods-DDQRCode_Example";
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		45DE46D0C01934BF23212923470AA9A7 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				AEDC22A534AC6A40A8B395AAB6AB87F9 /* Pods-DDQRCode_Example-umbrella.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		B761EAA968BF467603D4EF2F58B3863E /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				7547B4F54C5E83448CBA8872FB95B74D /* DDQRCode-umbrella.h in Headers */,
				0A6188731F2504684EFACA9EA5E93B21 /* QRItem.h in Headers */,
				4B3BE5C5F2D434A4DA869BF10DBA9039 /* QRMenu.h in Headers */,
				23F28AFDF684628D76677D53BED85EEA /* QRUtil.h in Headers */,
				2D4374CABC427F65A339E0DB2674D223 /* QRView.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		69B963F6554E7FC89400253FCE9F1D98 /* DDQRCode */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 7946CD43E9D2DBA6F2CD8F68ED1979E0 /* Build configuration list for PBXNativeTarget "DDQRCode" */;
			buildPhases = (
				0A1CE31A3E25C27572E0510CC126C739 /* Sources */,
				8C193F8D7B8977ECA88A87DC11C59C9A /* Frameworks */,
				B761EAA968BF467603D4EF2F58B3863E /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = DDQRCode;
			productName = DDQRCode;
			productReference = 2EB83E14F045FB6D6234F39E5E7D88A8 /* DDQRCode.framework */;
			productType = "com.apple.product-type.framework";
		};
		78ED5A8CC2DBD4D05541CF4A4C320B4F /* Pods-DDQRCode_Example */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 03F17E72A81A0DED90971133B771DFE8 /* Build configuration list for PBXNativeTarget "Pods-DDQRCode_Example" */;
			buildPhases = (
				ED8417194CABB8A09E0C8D1AA4CE3295 /* Sources */,
				24BF43A649F9BF40689EE7B0E67A8B78 /* Frameworks */,
				45DE46D0C01934BF23212923470AA9A7 /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
				6F743B93C7EE2398DAE6CFE0089B5043 /* PBXTargetDependency */,
			);
			name = "Pods-DDQRCode_Example";
			productName = "Pods-DDQRCode_Example";
			productReference = E9EF24FCD5947CA84D6CB934E231A574 /* Pods_DDQRCode_Example.framework */;
			productType = "com.apple.product-type.framework";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastSwiftUpdateCheck = 0730;
				LastUpgradeCheck = 0700;
			};
			buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
			);
			mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
			productRefGroup = 9729F6AC42D09B08D6A8DF37186F8504 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				69B963F6554E7FC89400253FCE9F1D98 /* DDQRCode */,
				78ED5A8CC2DBD4D05541CF4A4C320B4F /* Pods-DDQRCode_Example */,
			);
		};
/* End PBXProject section */

/* Begin PBXSourcesBuildPhase section */
		0A1CE31A3E25C27572E0510CC126C739 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				601FDB360CDB6E620FEB5D76580F99B4 /* DDQRCode-dummy.m in Sources */,
				9D826B352524F2D4B340C4778FED9A79 /* QRItem.m in Sources */,
				85ABF66101B8E2E4101A0DFC3BA8B611 /* QRMenu.m in Sources */,
				989B24256750E263AC82D2FAFA9BFA8B /* QRUtil.m in Sources */,
				34223F286BD0EC0CD59AF95A00AFC58B /* QRView.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		ED8417194CABB8A09E0C8D1AA4CE3295 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1DE5DEC0936079DF2EA222B8C2F2F945 /* Pods-DDQRCode_Example-dummy.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		6F743B93C7EE2398DAE6CFE0089B5043 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = DDQRCode;
			target = 69B963F6554E7FC89400253FCE9F1D98 /* DDQRCode */;
			targetProxy = 732CDCD571D2DD526ECE17D7C9E14DA5 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		11338C67702BA7140C87B1F13C1B4FB0 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 3C195CD0A2FBFCEE832F88787FBC97FA /* DDQRCode.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_PREFIX_HEADER = "Target Support Files/DDQRCode/DDQRCode-prefix.pch";
				INFOPLIST_FILE = "Target Support Files/DDQRCode/Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				MODULEMAP_FILE = "Target Support Files/DDQRCode/DDQRCode.modulemap";
				MTL_ENABLE_DEBUG_INFO = NO;
				PRODUCT_NAME = DDQRCode;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Release;
		};
		47BEF9D903506B003EA5C2B249729489 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				ENABLE_TESTABILITY = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"POD_CONFIGURATION_DEBUG=1",
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				ONLY_ACTIVE_ARCH = YES;
				STRIP_INSTALLED_PRODUCT = NO;
				SYMROOT = "${SRCROOT}/../build";
			};
			name = Debug;
		};
		7B2AF61CF55509444567932E0F635665 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 3C195CD0A2FBFCEE832F88787FBC97FA /* DDQRCode.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = dwarf;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_PREFIX_HEADER = "Target Support Files/DDQRCode/DDQRCode-prefix.pch";
				INFOPLIST_FILE = "Target Support Files/DDQRCode/Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				MODULEMAP_FILE = "Target Support Files/DDQRCode/DDQRCode.modulemap";
				MTL_ENABLE_DEBUG_INFO = YES;
				PRODUCT_NAME = DDQRCode;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Debug;
		};
		AAF678CED40D3499169D10F63CA0719E /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = YES;
				ENABLE_NS_ASSERTIONS = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"POD_CONFIGURATION_RELEASE=1",
					"$(inherited)",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				STRIP_INSTALLED_PRODUCT = NO;
				SYMROOT = "${SRCROOT}/../build";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		D869810D882513A992BB7B6CBCD9B3B7 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4A25ECA1D0EB752C7159D20BA89E4CAE /* Pods-DDQRCode_Example.release.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				INFOPLIST_FILE = "Target Support Files/Pods-DDQRCode_Example/Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				MACH_O_TYPE = staticlib;
				MODULEMAP_FILE = "Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example.modulemap";
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = Pods_DDQRCode_Example;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Release;
		};
		E0AD8BACA3D3CD17F5D48D7C8E4385D1 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 319145D1F6D62C610BF3FCD8A30C0478 /* Pods-DDQRCode_Example.debug.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = dwarf;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				INFOPLIST_FILE = "Target Support Files/Pods-DDQRCode_Example/Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				MACH_O_TYPE = staticlib;
				MODULEMAP_FILE = "Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example.modulemap";
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = Pods_DDQRCode_Example;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Debug;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		03F17E72A81A0DED90971133B771DFE8 /* Build configuration list for PBXNativeTarget "Pods-DDQRCode_Example" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				E0AD8BACA3D3CD17F5D48D7C8E4385D1 /* Debug */,
				D869810D882513A992BB7B6CBCD9B3B7 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				47BEF9D903506B003EA5C2B249729489 /* Debug */,
				AAF678CED40D3499169D10F63CA0719E /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		7946CD43E9D2DBA6F2CD8F68ED1979E0 /* Build configuration list for PBXNativeTarget "DDQRCode" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				7B2AF61CF55509444567932E0F635665 /* Debug */,
				11338C67702BA7140C87B1F13C1B4FB0 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
}


================================================
FILE: Example/Pods/Target Support Files/DDQRCode/DDQRCode-dummy.m
================================================
#import <Foundation/Foundation.h>
@interface PodsDummy_DDQRCode : NSObject
@end
@implementation PodsDummy_DDQRCode
@end


================================================
FILE: Example/Pods/Target Support Files/DDQRCode/DDQRCode-prefix.pch
================================================
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#endif



================================================
FILE: Example/Pods/Target Support Files/DDQRCode/DDQRCode-umbrella.h
================================================
#import <UIKit/UIKit.h>

#import "QRItem.h"
#import "QRMenu.h"
#import "QRUtil.h"
#import "QRView.h"

FOUNDATION_EXPORT double DDQRCodeVersionNumber;
FOUNDATION_EXPORT const unsigned char DDQRCodeVersionString[];



================================================
FILE: Example/Pods/Target Support Files/DDQRCode/DDQRCode.modulemap
================================================
framework module DDQRCode {
  umbrella header "DDQRCode-umbrella.h"

  export *
  module * { export * }
}


================================================
FILE: Example/Pods/Target Support Files/DDQRCode/DDQRCode.xcconfig
================================================
CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/DDQRCode
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public"
OTHER_LDFLAGS = -framework "AVFoundation" -framework "UIKit"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
SKIP_INSTALL = YES


================================================
FILE: Example/Pods/Target Support Files/DDQRCode/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>CFBundleDevelopmentRegion</key>
  <string>en</string>
  <key>CFBundleExecutable</key>
  <string>${EXECUTABLE_NAME}</string>
  <key>CFBundleIdentifier</key>
  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
  <key>CFBundleInfoDictionaryVersion</key>
  <string>6.0</string>
  <key>CFBundleName</key>
  <string>${PRODUCT_NAME}</string>
  <key>CFBundlePackageType</key>
  <string>FMWK</string>
  <key>CFBundleShortVersionString</key>
  <string>1.0.0</string>
  <key>CFBundleSignature</key>
  <string>????</string>
  <key>CFBundleVersion</key>
  <string>${CURRENT_PROJECT_VERSION}</string>
  <key>NSPrincipalClass</key>
  <string></string>
</dict>
</plist>


================================================
FILE: Example/Pods/Target Support Files/Pods-DDQRCode_Example/Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>CFBundleDevelopmentRegion</key>
  <string>en</string>
  <key>CFBundleExecutable</key>
  <string>${EXECUTABLE_NAME}</string>
  <key>CFBundleIdentifier</key>
  <string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
  <key>CFBundleInfoDictionaryVersion</key>
  <string>6.0</string>
  <key>CFBundleName</key>
  <string>${PRODUCT_NAME}</string>
  <key>CFBundlePackageType</key>
  <string>FMWK</string>
  <key>CFBundleShortVersionString</key>
  <string>1.0.0</string>
  <key>CFBundleSignature</key>
  <string>????</string>
  <key>CFBundleVersion</key>
  <string>${CURRENT_PROJECT_VERSION}</string>
  <key>NSPrincipalClass</key>
  <string></string>
</dict>
</plist>


================================================
FILE: Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-acknowledgements.markdown
================================================
# Acknowledgements
This application makes use of the following third party libraries:

## DDQRCode

Copyright (c) 2016 lcd <lcddhr@qq.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Generated by CocoaPods - https://cocoapods.org


================================================
FILE: Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-acknowledgements.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>PreferenceSpecifiers</key>
	<array>
		<dict>
			<key>FooterText</key>
			<string>This application makes use of the following third party libraries:</string>
			<key>Title</key>
			<string>Acknowledgements</string>
			<key>Type</key>
			<string>PSGroupSpecifier</string>
		</dict>
		<dict>
			<key>FooterText</key>
			<string>Copyright (c) 2016 lcd &lt;lcddhr@qq.com&gt;

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
</string>
			<key>Title</key>
			<string>DDQRCode</string>
			<key>Type</key>
			<string>PSGroupSpecifier</string>
		</dict>
		<dict>
			<key>FooterText</key>
			<string>Generated by CocoaPods - https://cocoapods.org</string>
			<key>Title</key>
			<string></string>
			<key>Type</key>
			<string>PSGroupSpecifier</string>
		</dict>
	</array>
	<key>StringsTable</key>
	<string>Acknowledgements</string>
	<key>Title</key>
	<string>Acknowledgements</string>
</dict>
</plist>


================================================
FILE: Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-dummy.m
================================================
#import <Foundation/Foundation.h>
@interface PodsDummy_Pods_DDQRCode_Example : NSObject
@end
@implementation PodsDummy_Pods_DDQRCode_Example
@end


================================================
FILE: Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-frameworks.sh
================================================
#!/bin/sh
set -e

echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"

SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}"

install_framework()
{
  if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then
    local source="${BUILT_PRODUCTS_DIR}/$1"
  elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then
    local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")"
  elif [ -r "$1" ]; then
    local source="$1"
  fi

  local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"

  if [ -L "${source}" ]; then
      echo "Symlinked..."
      source="$(readlink "${source}")"
  fi

  # use filter instead of exclude so missing patterns dont' throw errors
  echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\""
  rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}"

  local basename
  basename="$(basename -s .framework "$1")"
  binary="${destination}/${basename}.framework/${basename}"
  if ! [ -r "$binary" ]; then
    binary="${destination}/${basename}"
  fi

  # Strip invalid architectures so "fat" simulator / device frameworks work on device
  if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then
    strip_invalid_archs "$binary"
  fi

  # Resign the code if required by the build settings to avoid unstable apps
  code_sign_if_enabled "${destination}/$(basename "$1")"

  # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7.
  if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then
    local swift_runtime_libs
    swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u  && exit ${PIPESTATUS[0]})
    for lib in $swift_runtime_libs; do
      echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\""
      rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}"
      code_sign_if_enabled "${destination}/${lib}"
    done
  fi
}

# Signs a framework with the provided identity
code_sign_if_enabled() {
  if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then
    # Use the current code_sign_identitiy
    echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}"
    echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\""
    /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1"
  fi
}

# Strip invalid architectures
strip_invalid_archs() {
  binary="$1"
  # Get architectures for current file
  archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)"
  stripped=""
  for arch in $archs; do
    if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then
      # Strip non-valid architectures in-place
      lipo -remove "$arch" -output "$binary" "$binary" || exit 1
      stripped="$stripped $arch"
    fi
  done
  if [[ "$stripped" ]]; then
    echo "Stripped $binary of architectures:$stripped"
  fi
}


if [[ "$CONFIGURATION" == "Debug" ]]; then
  install_framework "$BUILT_PRODUCTS_DIR/DDQRCode/DDQRCode.framework"
fi
if [[ "$CONFIGURATION" == "Release" ]]; then
  install_framework "$BUILT_PRODUCTS_DIR/DDQRCode/DDQRCode.framework"
fi


================================================
FILE: Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-resources.sh
================================================
#!/bin/sh
set -e

mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"

RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt
> "$RESOURCES_TO_COPY"

XCASSET_FILES=()

case "${TARGETED_DEVICE_FAMILY}" in
  1,2)
    TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone"
    ;;
  1)
    TARGET_DEVICE_ARGS="--target-device iphone"
    ;;
  2)
    TARGET_DEVICE_ARGS="--target-device ipad"
    ;;
  *)
    TARGET_DEVICE_ARGS="--target-device mac"
    ;;
esac

realpath() {
  DIRECTORY="$(cd "${1%/*}" && pwd)"
  FILENAME="${1##*/}"
  echo "$DIRECTORY/$FILENAME"
}

install_resource()
{
  if [[ "$1" = /* ]] ; then
    RESOURCE_PATH="$1"
  else
    RESOURCE_PATH="${PODS_ROOT}/$1"
  fi
  if [[ ! -e "$RESOURCE_PATH" ]] ; then
    cat << EOM
error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script.
EOM
    exit 1
  fi
  case $RESOURCE_PATH in
    *.storyboard)
      echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}"
      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
      ;;
    *.xib)
      echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}"
      ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS}
      ;;
    *.framework)
      echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
      mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
      echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
      rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}"
      ;;
    *.xcdatamodel)
      echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\""
      xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom"
      ;;
    *.xcdatamodeld)
      echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\""
      xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd"
      ;;
    *.xcmappingmodel)
      echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\""
      xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm"
      ;;
    *.xcassets)
      ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH")
      XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE")
      ;;
    *)
      echo "$RESOURCE_PATH"
      echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY"
      ;;
  esac
}

mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then
  mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
  rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi
rm -f "$RESOURCES_TO_COPY"

if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ]
then
  # Find all other xcassets (this unfortunately includes those of path pods and other targets).
  OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d)
  while read line; do
    if [[ $line != "`realpath $PODS_ROOT`*" ]]; then
      XCASSET_FILES+=("$line")
    fi
  done <<<"$OTHER_XCASSETS"

  printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
fi


================================================
FILE: Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-umbrella.h
================================================
#import <UIKit/UIKit.h>


FOUNDATION_EXPORT double Pods_DDQRCode_ExampleVersionNumber;
FOUNDATION_EXPORT const unsigned char Pods_DDQRCode_ExampleVersionString[];



================================================
FILE: Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example.debug.xcconfig
================================================
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/DDQRCode"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/DDQRCode/DDQRCode.framework/Headers"
OTHER_LDFLAGS = $(inherited) -framework "DDQRCode"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}/Pods


================================================
FILE: Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example.modulemap
================================================
framework module Pods_DDQRCode_Example {
  umbrella header "Pods-DDQRCode_Example-umbrella.h"

  export *
  module * { export * }
}


================================================
FILE: Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example.release.xcconfig
================================================
FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/DDQRCode"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks'
OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/DDQRCode/DDQRCode.framework/Headers"
OTHER_LDFLAGS = $(inherited) -framework "DDQRCode"
PODS_BUILD_DIR = $BUILD_DIR
PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}/Pods


================================================
FILE: Example/Tests/Tests-Info.plist
================================================
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>en</string>
	<key>CFBundleExecutable</key>
	<string>${EXECUTABLE_NAME}</string>
	<key>CFBundleIdentifier</key>
	<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundlePackageType</key>
	<string>BNDL</string>
	<key>CFBundleShortVersionString</key>
	<string>1.0</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleVersion</key>
	<string>1</string>
</dict>
</plist>


================================================
FILE: Example/Tests/Tests-Prefix.pch
================================================
//  The contents of this file are implicitly included at the beginning of every test case source file.

#ifdef __OBJC__

  

#endif


================================================
FILE: Example/Tests/Tests.m
================================================
//
//  DDQRCodeTests.m
//  DDQRCodeTests
//
//  Created by lcd on 06/10/2016.
//  Copyright (c) 2016 lcd. All rights reserved.
//

@import XCTest;

@interface Tests : XCTestCase

@end

@implementation Tests

- (void)setUp
{
    [super setUp];
    // Put setup code here. This method is called before the invocation of each test method in the class.
}

- (void)tearDown
{
    // Put teardown code here. This method is called after the invocation of each test method in the class.
    [super tearDown];
}

- (void)testExample
{
    XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
}

@end



================================================
FILE: Example/Tests/en.lproj/InfoPlist.strings
================================================
/* Localized versions of Info.plist keys */



================================================
FILE: LICENSE
================================================
Copyright (c) 2016 lcd <lcddhr@qq.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.


================================================
FILE: README.md
================================================
# DDQRCode

[![CI Status](http://img.shields.io/travis/lcd/DDQRCode.svg?style=flat)](https://travis-ci.org/lcd/DDQRCode)
[![Version](https://img.shields.io/cocoapods/v/DDQRCode.svg?style=flat)](http://cocoapods.org/pods/DDQRCode)
[![License](https://img.shields.io/cocoapods/l/DDQRCode.svg?style=flat)](http://cocoapods.org/pods/DDQRCode)
[![Platform](https://img.shields.io/cocoapods/p/DDQRCode.svg?style=flat)](http://cocoapods.org/pods/DDQRCode)

## Example

To run the example project, clone the repo, and run `pod install` from the Example directory first.

## Requirements

```ruby
iOS8+
```

## Installation

DDQRCode is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:

```ruby
pod 'DDQRCode', '~> 1.0.0'
```

## Preview

![qrview](http://iosddimage.qiniudn.com/QRView.PNG)


## Version
*	1.0.0 实现二维码中间扫描区域的透明的主要功能。

*	1.0.1 把扫描区域限制在中间透明的范围。

*   1.0.2 增加扫描的类型,支持二维码和条形码扫描。

*	1.0.3 增加摄像头有效性的判断,二维码只能在真机测试。

*	1.0.4 修改iPad横屏不能扫描的bug

*	1.0.5 重构部分代码

*	1.0.6 push一个界面再返回,界面卡住问题

*	1.0.7 增加二维码图片的读取	

* 	1.0.8 修正相机权限

## Author

weibo:[@小木头](http://weibo.com/329096966)

blog: [http://www.liuchendi.com](http://www.liuchendi.com)

微信公众号:

![](http://7i7ht3.com1.z0.glb.clouddn.com/QRCode.jpg)


## License

DDQRCode is available under the MIT license. See the LICENSE file for more info.
Download .txt
gitextract_fde3d75u/

├── DDQRCode/
│   └── Classes/
│       ├── QRItem.h
│       ├── QRItem.m
│       ├── QRMenu.h
│       ├── QRMenu.m
│       ├── QRUtil.h
│       ├── QRUtil.m
│       ├── QRView.h
│       └── QRView.m
├── DDQRCode.podspec
├── Example/
│   ├── DDQRCode/
│   │   ├── DDAppDelegate.h
│   │   ├── DDAppDelegate.m
│   │   ├── DDPhotoQRCodeViewController.h
│   │   ├── DDPhotoQRCodeViewController.m
│   │   ├── DDQRCode-Info.plist
│   │   ├── DDQRCode-Prefix.pch
│   │   ├── DDQRCodeViewController.h
│   │   ├── DDQRCodeViewController.m
│   │   ├── DDViewController.h
│   │   ├── DDViewController.m
│   │   ├── Images.xcassets/
│   │   │   ├── AppIcon.appiconset/
│   │   │   │   └── Contents.json
│   │   │   └── LaunchImage.launchimage/
│   │   │       └── Contents.json
│   │   ├── Main.storyboard
│   │   ├── en.lproj/
│   │   │   └── InfoPlist.strings
│   │   └── main.m
│   ├── DDQRCode.xcodeproj/
│   │   ├── project.pbxproj
│   │   ├── project.xcworkspace/
│   │   │   └── contents.xcworkspacedata
│   │   └── xcshareddata/
│   │       └── xcschemes/
│   │           └── DDQRCode-Example.xcscheme
│   ├── DDQRCode.xcworkspace/
│   │   └── contents.xcworkspacedata
│   ├── Podfile
│   ├── Pods/
│   │   ├── DDQRCode/
│   │   │   ├── DDQRCode/
│   │   │   │   └── Classes/
│   │   │   │       ├── QRItem.h
│   │   │   │       ├── QRItem.m
│   │   │   │       ├── QRMenu.h
│   │   │   │       ├── QRMenu.m
│   │   │   │       ├── QRUtil.h
│   │   │   │       ├── QRUtil.m
│   │   │   │       ├── QRView.h
│   │   │   │       └── QRView.m
│   │   │   ├── LICENSE
│   │   │   └── README.md
│   │   ├── Local Podspecs/
│   │   │   └── DDQRCode.podspec.json
│   │   ├── Pods.xcodeproj/
│   │   │   └── project.pbxproj
│   │   └── Target Support Files/
│   │       ├── DDQRCode/
│   │       │   ├── DDQRCode-dummy.m
│   │       │   ├── DDQRCode-prefix.pch
│   │       │   ├── DDQRCode-umbrella.h
│   │       │   ├── DDQRCode.modulemap
│   │       │   ├── DDQRCode.xcconfig
│   │       │   └── Info.plist
│   │       └── Pods-DDQRCode_Example/
│   │           ├── Info.plist
│   │           ├── Pods-DDQRCode_Example-acknowledgements.markdown
│   │           ├── Pods-DDQRCode_Example-acknowledgements.plist
│   │           ├── Pods-DDQRCode_Example-dummy.m
│   │           ├── Pods-DDQRCode_Example-frameworks.sh
│   │           ├── Pods-DDQRCode_Example-resources.sh
│   │           ├── Pods-DDQRCode_Example-umbrella.h
│   │           ├── Pods-DDQRCode_Example.debug.xcconfig
│   │           ├── Pods-DDQRCode_Example.modulemap
│   │           └── Pods-DDQRCode_Example.release.xcconfig
│   └── Tests/
│       ├── Tests-Info.plist
│       ├── Tests-Prefix.pch
│       ├── Tests.m
│       └── en.lproj/
│           └── InfoPlist.strings
├── LICENSE
└── README.md
Condensed preview — 63 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (148K chars).
[
  {
    "path": "DDQRCode/Classes/QRItem.h",
    "chars": 428,
    "preview": "//\n//  QRItem.h\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/4/30.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "DDQRCode/Classes/QRItem.m",
    "chars": 500,
    "preview": "//\n//  QRItem.m\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/4/30.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "DDQRCode/Classes/QRMenu.h",
    "chars": 377,
    "preview": "//\n//  QRMenu.h\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/4/30.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "DDQRCode/Classes/QRMenu.m",
    "chars": 1584,
    "preview": "//\n//  QRMenu.m\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/4/30.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "DDQRCode/Classes/QRUtil.h",
    "chars": 364,
    "preview": "//\n//  QRUtil.h\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/10/9.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "DDQRCode/Classes/QRUtil.m",
    "chars": 1746,
    "preview": "//\n//  QRUtil.m\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/10/9.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "DDQRCode/Classes/QRView.h",
    "chars": 421,
    "preview": "//\n//  QRView.h\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/4/25.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "DDQRCode/Classes/QRView.m",
    "chars": 6027,
    "preview": "//\n//  QRView.m\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/4/25.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "DDQRCode.podspec",
    "chars": 1565,
    "preview": "#\n# Be sure to run `pod lib lint DDQRCode.podspec' to ensure this is a\n# valid spec before submitting.\n#\n# Any lines sta"
  },
  {
    "path": "Example/DDQRCode/DDAppDelegate.h",
    "chars": 269,
    "preview": "//\n//  DDAppDelegate.h\n//  DDQRCode\n//\n//  Created by lcd on 06/10/2016.\n//  Copyright (c) 2016 lcd. All rights reserved"
  },
  {
    "path": "Example/DDQRCode/DDAppDelegate.m",
    "chars": 1993,
    "preview": "//\n//  DDAppDelegate.m\n//  DDQRCode\n//\n//  Created by lcd on 06/10/2016.\n//  Copyright (c) 2016 lcd. All rights reserved"
  },
  {
    "path": "Example/DDQRCode/DDPhotoQRCodeViewController.h",
    "chars": 227,
    "preview": "//\n//  DDPhotoQRCodeViewController.h\n//  DDQRCode\n//\n//  Created by meitu on 16/6/10.\n//  Copyright © 2016年 lcd. All rig"
  },
  {
    "path": "Example/DDQRCode/DDPhotoQRCodeViewController.m",
    "chars": 2389,
    "preview": "//\n//  DDPhotoQRCodeViewController.m\n//  DDQRCode\n//\n//  Created by meitu on 16/6/10.\n//  Copyright © 2016年 lcd. All rig"
  },
  {
    "path": "Example/DDQRCode/DDQRCode-Info.plist",
    "chars": 1501,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/DDQRCode/DDQRCode-Prefix.pch",
    "chars": 321,
    "preview": "//\n//  Prefix header\n//\n//  The contents of this file are implicitly included at the beginning of every source file.\n//\n"
  },
  {
    "path": "Example/DDQRCode/DDQRCodeViewController.h",
    "chars": 433,
    "preview": "//\n//  DDQRCodeViewController.h\n//  DDQRCode\n//\n//  Created by meitu on 16/6/10.\n//  Copyright © 2016年 lcd. All rights r"
  },
  {
    "path": "Example/DDQRCode/DDQRCodeViewController.m",
    "chars": 6192,
    "preview": "//\n//  DDQRCodeViewController.m\n//  DDQRCode\n//\n//  Created by meitu on 16/6/10.\n//  Copyright © 2016年 lcd. All rights r"
  },
  {
    "path": "Example/DDQRCode/DDViewController.h",
    "chars": 211,
    "preview": "//\n//  DDViewController.h\n//  DDQRCode\n//\n//  Created by lcd on 06/10/2016.\n//  Copyright (c) 2016 lcd. All rights reser"
  },
  {
    "path": "Example/DDQRCode/DDViewController.m",
    "chars": 2382,
    "preview": "//\n//  DDViewController.m\n//  DDQRCode\n//\n//  Created by lcd on 06/10/2016.\n//  Copyright (c) 2016 lcd. All rights reser"
  },
  {
    "path": "Example/DDQRCode/Images.xcassets/AppIcon.appiconset/Contents.json",
    "chars": 826,
    "preview": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\""
  },
  {
    "path": "Example/DDQRCode/Images.xcassets/LaunchImage.launchimage/Contents.json",
    "chars": 1101,
    "preview": "{\n  \"images\" : [\n    {\n      \"orientation\" : \"portrait\",\n      \"idiom\" : \"iphone\",\n      \"extent\" : \"full-screen\",\n     "
  },
  {
    "path": "Example/DDQRCode/Main.storyboard",
    "chars": 6100,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard"
  },
  {
    "path": "Example/DDQRCode/en.lproj/InfoPlist.strings",
    "chars": 45,
    "preview": "/* Localized versions of Info.plist keys */\n\n"
  },
  {
    "path": "Example/DDQRCode/main.m",
    "chars": 319,
    "preview": "//\n//  main.m\n//  DDQRCode\n//\n//  Created by lcd on 06/10/2016.\n//  Copyright (c) 2016 lcd. All rights reserved.\n//\n\n@im"
  },
  {
    "path": "Example/DDQRCode.xcodeproj/project.pbxproj",
    "chars": 29341,
    "preview": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section *"
  },
  {
    "path": "Example/DDQRCode.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "chars": 153,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:DDQRCode.xcodep"
  },
  {
    "path": "Example/DDQRCode.xcodeproj/xcshareddata/xcschemes/DDQRCode-Example.xcscheme",
    "chars": 3814,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0720\"\n   version = \"1.3\">\n   <BuildAction\n      "
  },
  {
    "path": "Example/DDQRCode.xcworkspace/contents.xcworkspacedata",
    "chars": 226,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"group:DDQRCode.xcode"
  },
  {
    "path": "Example/Podfile",
    "chars": 280,
    "preview": "\nsource 'https://github.com/CocoaPods/Specs.git'\nplatform :ios, '8.0'\ninhibit_all_warnings!\n\nuse_frameworks!\n\ntarget 'DD"
  },
  {
    "path": "Example/Pods/DDQRCode/DDQRCode/Classes/QRItem.h",
    "chars": 428,
    "preview": "//\n//  QRItem.h\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/4/30.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "Example/Pods/DDQRCode/DDQRCode/Classes/QRItem.m",
    "chars": 500,
    "preview": "//\n//  QRItem.m\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/4/30.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "Example/Pods/DDQRCode/DDQRCode/Classes/QRMenu.h",
    "chars": 377,
    "preview": "//\n//  QRMenu.h\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/4/30.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "Example/Pods/DDQRCode/DDQRCode/Classes/QRMenu.m",
    "chars": 1584,
    "preview": "//\n//  QRMenu.m\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/4/30.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "Example/Pods/DDQRCode/DDQRCode/Classes/QRUtil.h",
    "chars": 364,
    "preview": "//\n//  QRUtil.h\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/10/9.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "Example/Pods/DDQRCode/DDQRCode/Classes/QRUtil.m",
    "chars": 1746,
    "preview": "//\n//  QRUtil.m\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/10/9.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "Example/Pods/DDQRCode/DDQRCode/Classes/QRView.h",
    "chars": 421,
    "preview": "//\n//  QRView.h\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/4/25.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "Example/Pods/DDQRCode/DDQRCode/Classes/QRView.m",
    "chars": 6027,
    "preview": "//\n//  QRView.m\n//  QRWeiXinDemo\n//\n//  Created by lovelydd on 15/4/25.\n//  Copyright (c) 2015年 lovelydd. All rights res"
  },
  {
    "path": "Example/Pods/DDQRCode/LICENSE",
    "chars": 1063,
    "preview": "Copyright (c) 2016 lcd <lcddhr@qq.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof "
  },
  {
    "path": "Example/Pods/DDQRCode/README.md",
    "chars": 877,
    "preview": "# DDQRCode\n\n[![CI Status](http://img.shields.io/travis/lcd/DDQRCode.svg?style=flat)](https://travis-ci.org/lcd/DDQRCode)"
  },
  {
    "path": "Example/Pods/Local Podspecs/DDQRCode.podspec.json",
    "chars": 515,
    "preview": "{\n  \"name\": \"DDQRCode\",\n  \"version\": \"0.1.0\",\n  \"summary\": \"A short description of DDQRCode.\",\n  \"description\": \"TODO: A"
  },
  {
    "path": "Example/Pods/Pods.xcodeproj/project.pbxproj",
    "chars": 28542,
    "preview": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section *"
  },
  {
    "path": "Example/Pods/Target Support Files/DDQRCode/DDQRCode-dummy.m",
    "chars": 120,
    "preview": "#import <Foundation/Foundation.h>\n@interface PodsDummy_DDQRCode : NSObject\n@end\n@implementation PodsDummy_DDQRCode\n@end\n"
  },
  {
    "path": "Example/Pods/Target Support Files/DDQRCode/DDQRCode-prefix.pch",
    "chars": 48,
    "preview": "#ifdef __OBJC__\n#import <UIKit/UIKit.h>\n#endif\n\n"
  },
  {
    "path": "Example/Pods/Target Support Files/DDQRCode/DDQRCode-umbrella.h",
    "chars": 214,
    "preview": "#import <UIKit/UIKit.h>\n\n#import \"QRItem.h\"\n#import \"QRMenu.h\"\n#import \"QRUtil.h\"\n#import \"QRView.h\"\n\nFOUNDATION_EXPORT "
  },
  {
    "path": "Example/Pods/Target Support Files/DDQRCode/DDQRCode.modulemap",
    "chars": 106,
    "preview": "framework module DDQRCode {\n  umbrella header \"DDQRCode-umbrella.h\"\n\n  export *\n  module * { export * }\n}\n"
  },
  {
    "path": "Example/Pods/Target Support Files/DDQRCode/DDQRCode.xcconfig",
    "chars": 501,
    "preview": "CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/DDQRCode\nGCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1"
  },
  {
    "path": "Example/Pods/Target Support Files/DDQRCode/Info.plist",
    "chars": 828,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-DDQRCode_Example/Info.plist",
    "chars": 828,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-acknowledgements.markdown",
    "chars": 1211,
    "preview": "# Acknowledgements\nThis application makes use of the following third party libraries:\n\n## DDQRCode\n\nCopyright (c) 2016 l"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-acknowledgements.plist",
    "chars": 2044,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-dummy.m",
    "chars": 146,
    "preview": "#import <Foundation/Foundation.h>\n@interface PodsDummy_Pods_DDQRCode_Example : NSObject\n@end\n@implementation PodsDummy_P"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-frameworks.sh",
    "chars": 3609,
    "preview": "#!/bin/sh\nset -e\n\necho \"mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}\"\nmkdir -p \"${CONFIGURATION_BUILD_D"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-resources.sh",
    "chars": 5137,
    "preview": "#!/bin/sh\nset -e\n\nmkdir -p \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}\"\n\nRESOURCES_TO_COPY=${PODS_ROOT}/re"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example-umbrella.h",
    "chars": 164,
    "preview": "#import <UIKit/UIKit.h>\n\n\nFOUNDATION_EXPORT double Pods_DDQRCode_ExampleVersionNumber;\nFOUNDATION_EXPORT const unsigned "
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example.debug.xcconfig",
    "chars": 531,
    "preview": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/DDQRCode\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherite"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example.modulemap",
    "chars": 132,
    "preview": "framework module Pods_DDQRCode_Example {\n  umbrella header \"Pods-DDQRCode_Example-umbrella.h\"\n\n  export *\n  module * { e"
  },
  {
    "path": "Example/Pods/Target Support Files/Pods-DDQRCode_Example/Pods-DDQRCode_Example.release.xcconfig",
    "chars": 531,
    "preview": "FRAMEWORK_SEARCH_PATHS = $(inherited) \"$PODS_CONFIGURATION_BUILD_DIR/DDQRCode\"\nGCC_PREPROCESSOR_DEFINITIONS = $(inherite"
  },
  {
    "path": "Example/Tests/Tests-Info.plist",
    "chars": 674,
    "preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/P"
  },
  {
    "path": "Example/Tests/Tests-Prefix.pch",
    "chars": 132,
    "preview": "//  The contents of this file are implicitly included at the beginning of every test case source file.\n\n#ifdef __OBJC__\n"
  },
  {
    "path": "Example/Tests/Tests.m",
    "chars": 602,
    "preview": "//\n//  DDQRCodeTests.m\n//  DDQRCodeTests\n//\n//  Created by lcd on 06/10/2016.\n//  Copyright (c) 2016 lcd. All rights res"
  },
  {
    "path": "Example/Tests/en.lproj/InfoPlist.strings",
    "chars": 45,
    "preview": "/* Localized versions of Info.plist keys */\n\n"
  },
  {
    "path": "LICENSE",
    "chars": 1063,
    "preview": "Copyright (c) 2016 lcd <lcddhr@qq.com>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof "
  },
  {
    "path": "README.md",
    "chars": 1360,
    "preview": "# DDQRCode\n\n[![CI Status](http://img.shields.io/travis/lcd/DDQRCode.svg?style=flat)](https://travis-ci.org/lcd/DDQRCode)"
  }
]

About this extraction

This page contains the full source code of the lcddhr/QRWeiXinDemo GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 63 files (130.5 KB), approximately 41.8k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!