ScanQRController.h
449 Bytes
//
// ScanQRController.h
// RTMPiOSDemo
//
// Created by 蓝鲸 on 16/4/1.
// Copyright © 2016年 tencent. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
@interface ScanQRController : UIViewController
{
BOOL _qrResult;
AVCaptureSession * _captureSession;
AVCaptureVideoPreviewLayer *_videoPreviewLayer;
}
@property (nonatomic, retain) UIViewController* pvc;
@end