audioPlayListView.h 405 B

123456789101112131415161718192021
  1. //
  2. // audioPlayListView.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/7/15.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface audioPlayListView : UIView
  10. @property (nonatomic,assign) NSInteger playingIndex;
  11. @property (nonatomic,copy) void (^didClickButtonFun)(void);
  12. - (id)initWithFrame:(CGRect)frame withIndex:(NSInteger)index;
  13. - (void)reGetDataFun;
  14. @end
  15. NS_ASSUME_NONNULL_END