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
458 B
25 lines
458 B
// |
|
// 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
|
|
|