ZFCollectionViewCell.h 499 B

1234567891011121314151617181920
  1. //
  2. // ZFCollectionViewCell.h
  3. // Player
  4. //
  5. // Created by 任子丰 on 17/3/22.
  6. // Copyright © 2017年 任子丰. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ZFTableData.h"
  10. @interface ZFCollectionViewCell : UICollectionViewCell
  11. @property (nonatomic, strong) UIImageView *coverImageView;
  12. @property (nonatomic, strong) UIButton *playBtn;
  13. /// 播放按钮block
  14. @property (nonatomic, copy ) void(^playBlock)(UIButton *sender);
  15. @property (nonatomic, strong) ZFTableData *data;
  16. @end