ZFDouyinCollectionViewCell.h 461 B

1234567891011121314151617181920212223
  1. //
  2. // ZFDouyinCollectionViewCell.h
  3. // ZFPlayer_Example
  4. //
  5. // Created by 紫枫 on 2019/6/4.
  6. // Copyright © 2019 紫枫. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ZFTableData.h"
  10. #import "ZFDouYinCellDelegate.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface ZFDouyinCollectionViewCell : UICollectionViewCell
  13. @property (nonatomic, strong) ZFTableData *data;
  14. @property (nonatomic, weak) id<ZFDouYinCellDelegate> delegate;
  15. @end
  16. NS_ASSUME_NONNULL_END