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