new_BGMcategory.h 580 B

1234567891011121314151617181920
  1. //
  2. // new_BGMcategory.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_bgmcategoryCell.h"
  10. @protocol new_bgmcategoryDelegate <NSObject>
  11. - (void)itemSelect:(new_bgmcategoryModel *)model;
  12. @end
  13. //音乐分类模块
  14. @interface new_BGMcategory : UIView<UICollectionViewDelegate ,UICollectionViewDataSource>
  15. @property (nonatomic, strong)NSArray *dataSource;
  16. @property (nonatomic, weak)id<new_bgmcategoryDelegate>delegate;
  17. @property (nonatomic, strong)UICollectionView *collectionview;
  18. @end