new_bgmListView.h 578 B

12345678910111213141516171819202122
  1. //
  2. // new_bgmListView.h
  3. // BuguLive
  4. //
  5. // Created by bugu on 2019/5/25.
  6. // Copyright © 2019年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "new_bgmitemCell.h"
  10. #import "UIView+addVideoToView.h"
  11. //音乐列表
  12. @protocol new_bgmSureDelegate<NSObject>
  13. - (void)SureUseobj:(music_obj *)model;
  14. @end
  15. @interface new_bgmListView : UIView
  16. @property (nonatomic, strong)UITableView *tableview;
  17. @property (nonatomic, weak)id<new_bgmSureDelegate>delegate;
  18. @property (nonatomic, weak)AVPlayer *player;
  19. - (void)setDatasource:(NSArray *)datasource andPage:(int)page;
  20. @end