YOUPAIZYUserZiLiaoPJCell.h 771 B

12345678910111213141516171819202122232425262728
  1. //
  2. // YOUPAIZYUserZiLiaoPJCell.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. #import "YOUPAIZYLabelModel.h"
  10. #import "YOUPAILCUserShowModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @protocol ZYLabelViewDelegate <NSObject>
  13. -(void)youpaifclickLabel:(YOUPAIZYLabelModel *)labelModel;
  14. -(void)youpaifbackPJCellHeight:(CGFloat)height;
  15. @end
  16. @interface YOUPAIZYUserZiLiaoPJCell : UICollectionViewCell
  17. @property (nonatomic, strong) UILabel *youpaiptitleLabel;
  18. @property(nonatomic,weak)id<ZYLabelViewDelegate>youpaipdelegate;
  19. @property(nonatomic,strong)NSArray* youpaiplabelArray;
  20. /* YOUPAILCUserShowModel */
  21. @property (strong, nonatomic) YOUPAILCUserShowModel *youpaipmodel;
  22. @end
  23. NS_ASSUME_NONNULL_END