new_bgmitemCell.h 458 B

123456789101112131415161718
  1. //
  2. // new_bgmitemCell.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 "music_obj.h"
  10. @protocol new_bgmitemDelegate<NSObject>
  11. - (void)selectItem:(music_obj *)model;
  12. - (void)doCollection:(music_obj *)model;
  13. @end
  14. @interface new_bgmitemCell : UITableViewCell
  15. @property (nonatomic, strong)music_obj *model;
  16. @property (nonatomic, weak)id<new_bgmitemDelegate>delegate;
  17. @end