123456789101112131415161718192021222324 |
- //
- // audioPlayingView.h
- // 双子星云手机
- //
- // Created by xd h on 2024/7/21.
- //
- #import <UIKit/UIKit.h>
- 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
|