Files
shadowsocks-iOS/ShadowWeb/QRCodeViewController.h
2014-02-18 12:21:52 +08:00

15 lines
371 B
Objective-C

//
// Created by clowwindy on 14-2-17.
// Copyright (c) 2014 clowwindy. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <ZXingObjC/ZXingObjC.h>
typedef void (^QRCodeViewControllerReturnBlock)(NSString *code);
@interface QRCodeViewController : UIViewController<ZXCaptureDelegate>
-(id)initWithReturnBlock:(QRCodeViewControllerReturnBlock)block;
@end