// // audioPlayingView.h // Private-X // // Created by xd h on 2024/7/21. // #import NS_ASSUME_NONNULL_BEGIN @interface audioPlayingView : UIView @property (nonatomic,copy) void (^didClickButtonFun)(NSInteger tag); + (instancetype)sharedInstance; - (void)startRotatingImage; - (void)stopRotatingImage; - (void)setAudioTitleFunBy:(NSInteger)AudioID; - (void)setAudioPlayingStateFunBy:(BOOL)isPlaying; @end NS_ASSUME_NONNULL_END