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