You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
525 B
25 lines
525 B
1 year ago
|
//
|
||
|
// SGQRCodeLog.h
|
||
|
// SGQRCodeExample
|
||
|
//
|
||
|
// Created by kingsic on 2022/7/15.
|
||
|
// Copyright © 2022 kingsic. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface SGQRCodeLog : NSObject
|
||
|
/// 单例创建 SGQRCodeLog
|
||
|
+ (instancetype)sharedQRCodeLog;
|
||
|
|
||
|
/// 是否需要打印日志信息,默认为:NO
|
||
|
///
|
||
|
/// SGScanCode 和 SGScanView 的 dealloc 方法打印,扫描和读取图片中的二维码信息打印
|
||
|
@property (nonatomic, assign) BOOL log;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|