12345678910111213141516171819202122232425262728 |
- //
- // YOUPAIZYUserZiLiaoPJCell.h
- // VQU
- //
- // Created by 肖浩然的mac on 2021/7/10.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAIZYLabelModel.h"
- #import "YOUPAILCUserShowModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol ZYLabelViewDelegate <NSObject>
- -(void)youpaifclickLabel:(YOUPAIZYLabelModel *)labelModel;
- -(void)youpaifbackPJCellHeight:(CGFloat)height;
- @end
- @interface YOUPAIZYUserZiLiaoPJCell : UICollectionViewCell
- @property (nonatomic, strong) UILabel *youpaiptitleLabel;
- @property(nonatomic,weak)id<ZYLabelViewDelegate>youpaipdelegate;
- @property(nonatomic,strong)NSArray* youpaiplabelArray;
- /* YOUPAILCUserShowModel */
- @property (strong, nonatomic) YOUPAILCUserShowModel *youpaipmodel;
- @end
- NS_ASSUME_NONNULL_END
|