BBASMScanViewController.h 589 Bytes
//
//  BBASMScanViewController.h
//  SwanAppDemo
//
//  Created by Ren,Tao on 2019/1/12.
//  Copyright © 2019 baidu. All rights reserved.
//

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface BBASMScanViewController : UIViewController

/**
 初始化二维码扫码控制器
 @param scanBlock 扫码完成回调,result结构:@{@"codeResult": 扫码结果, @"scanType":扫码类型}
 @return BBASMScanViewController对象
 */
- (instancetype)initScanCompleteBlock:(void (^)(NSDictionary * _Nullable result, NSError * _Nullable error))scanBlock;

@end

NS_ASSUME_NONNULL_END