123456789101112131415161718192021222324 |
- //
- // YOUPAIZYUserZiLiaoSHCell.h
- // VQU
- //
- // Created by 肖浩然的mac on 2021/7/10.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol ZYDidSHCellOrBtnDelegate <NSObject>
- -(void)youpaifSHDidCellOrBtnclick:(BOOL)isShouHu;
- @end
- @interface YOUPAIZYUserZiLiaoSHCell : UICollectionViewCell
- @property (nonatomic, strong) UILabel *youpaiptitleLabel;
- @property (strong, nonatomic) NSArray *youpaipdataArr;
- @property(nonatomic,weak)id<ZYDidSHCellOrBtnDelegate>youpaipdelegate;
- @end
- NS_ASSUME_NONNULL_END
|