// // ScanQRCodeViewController.h // MIT_Shop // // Created by 翟玉磊 on 2017/11/18. // Copyright © 2017年 翟玉磊. All rights reserved. // #import @class ScanQRCodeViewController; @protocol ScanQRCodeViewControllerDelegate /** 扫描成功后获取的链接 @param text 链接 */ - (void)scanCompletionCallbackWithText:(NSString *)text ScanQRCodeViewController:(ScanQRCodeViewController *)ScanQRCodeViewController; @end @interface ScanQRCodeViewController : BaseViewController @property (nonatomic, weak) id delegate; - (void)startAnimaion; @end