zjf
2023-03-06 392b76515f40376b6d36f40a114850ef63650384
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
//  SGSoundEffect.h
//  SGQRCodeExample
//
//  Created by kingsic on 2022/7/8.
//  Copyright © 2022 kingsic. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface SGSoundEffect : NSObject
/// 对象方法获取音效文件
- (id)initWithFilepath:(NSString *)path;
 
/// 类方法获取音效文件
+ (id)soundEffectWithFilepath:(NSString *)path;
 
/// 开始播放音效
- (void)play;
 
@end
 
NS_ASSUME_NONNULL_END