audioPlayerViewController.h 402 B

123456789101112131415161718
  1. //
  2. // audioPlayerViewController.h
  3. // 双子星云手机
  4. //
  5. // Created by xd h on 2024/5/26.
  6. //
  7. #import "BaseViewController.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface audioPlayerViewController : BaseViewController
  10. @property (nonatomic, assign) NSInteger index;//当前位置
  11. @property (nonatomic, strong) NSArray * audioOutSidedataArray;//传入数据 NASFileAudioDataModel
  12. @end
  13. NS_ASSUME_NONNULL_END