// // AudioSessionObject.h // 隐私保护 // // Created by xd h on 2023/10/24. // #import NS_ASSUME_NONNULL_BEGIN @interface AudioSessionObject : NSObject @property (nonatomic, assign) BOOL isBackgroundType; /// 创建单利 + (AudioSessionObject *)shareManager; /// 创建音乐播放器 - (void)creatAVAudioSessionObject; /// 开始播放音乐 - (void)startPlayAudioSession; /// 停止播放音乐 - (void)stopPlayAudioSession; //停止后台活跃 - (void)stopBackgroundActiveFun; @end NS_ASSUME_NONNULL_END