12345678910111213141516171819202122232425 |
- //
- // YOUPAIZYUserZiLiaoBHNoDataCell.h
- // VQU
- //
- // Created by 肖浩然的mac on 2021/7/16.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void (^DidClickBH)(void);
- @interface YOUPAIZYUserZiLiaoBHNoDataCell : UICollectionViewCell
- /* 庇护按钮 */
- @property (strong, nonatomic) UIButton *youpaipbihuBtn;
- @property (copy, nonatomic) NSString *youpaipuserId;
- /* titleLabel */
- @property (strong, nonatomic) UILabel *youpaiptitleLabel;
- @property (strong, nonatomic) NSArray *youpaipdataArr;
- /* 点击庇护 */
- @property (copy, nonatomic) DidClickBH youpaipdidClickBH;
- @end
- NS_ASSUME_NONNULL_END
|