YOUPAIZYUserZiLiaoDTCell.h 566 B

12345678910111213141516171819202122232425
  1. //
  2. // YOUPAIZYUserZiLiaoDTCell.h
  3. // VQU
  4. //
  5. // Created by 肖浩然的mac on 2021/7/10.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol ZYDidCellOrBtnDelegate <NSObject>
  11. -(void)youpaifDTDidCellOrBtnclick;
  12. @end
  13. @interface YOUPAIZYUserZiLiaoDTCell : UICollectionViewCell
  14. @property (nonatomic, strong) UILabel *youpaiptitleLabel;
  15. /* albumArray */
  16. @property (strong, nonatomic) NSArray *youpaipalbumArray;
  17. @property(nonatomic,weak)id<ZYDidCellOrBtnDelegate>youpaipdelegate;
  18. @end
  19. NS_ASSUME_NONNULL_END