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.
23 lines
335 B
23 lines
335 B
1 year ago
|
//
|
||
|
// SGTorch.h
|
||
|
// SGQRCodeExample
|
||
|
//
|
||
|
// Created by kingsic on 2022/7/9.
|
||
|
// Copyright © 2022 kingsic. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface SGTorch : NSObject
|
||
|
/// 打开手电筒
|
||
|
+ (void)turnOnTorch;
|
||
|
|
||
|
/// 关闭手电筒
|
||
|
+ (void)turnOffTorch;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|