12345678910111213141516171819202122 |
- //
- // YOUPAILZAudioPlayer.h
- // VQU
- //
- // Created by CY on 2021/9/22.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAILZAudioPlayer : NSObject
- + (instancetype)sharedInstance;
- @property (nonatomic, assign) BOOL youpaipneedRunInBackground;
- @property (nonatomic, strong) AVAudioPlayer *youpaipplayer;
- @end
- NS_ASSUME_NONNULL_END
|