// // audioPlayListView.h // Private-X // // Created by xd h on 2024/7/15. // #import #import "audioPlayListManager.h" NS_ASSUME_NONNULL_BEGIN @interface audioPlayListView : UIView @property (nonatomic,assign) NSInteger playingIndex; @property (nonatomic,copy) void (^didClickButtonFun)(void); @property (nonatomic,copy) void (^didClickDeleteFun)(lastFileModel* dataModel); @property (nonatomic,copy) void (^didClickAudioFun)(NSInteger row); - (id)initWithFrame:(CGRect)frame withIndex:(NSInteger)index; - (void)reGetDataFun; @end NS_ASSUME_NONNULL_END