酷店

KDPSupplyCommentViewCell.h 645B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // KDPSupplyCommentViewCell.h
  3. // KuDianProject
  4. //
  5. // Created by admin on 2019/7/4.
  6. // Copyright © 2019 KDP. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol KDPSupplyCommentViewCellDelegate<NSObject>
  11. @required
  12. - (void)commentCollectionView:(UICollectionView *)collectionView didSelectIndex:(NSInteger )index;
  13. @end
  14. @interface KDPSupplyCommentViewCell : UICollectionViewCell
  15. @property (nonatomic, strong) NSArray *dataArray;
  16. @property (nonatomic, weak) id <KDPSupplyCommentViewCellDelegate> delegate;
  17. @end
  18. NS_ASSUME_NONNULL_END
  19. @interface KDPSupplyCommentContentCell : UICollectionViewCell
  20. @end