YOUPAIZYUserZiLiaoSHNoDataCell.h 674 B

12345678910111213141516171819202122232425
  1. //
  2. // YOUPAIZYUserZiLiaoSHNoDataCell.h
  3. // VQU
  4. //
  5. // Created by 肖浩然的mac on 2021/7/16.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void (^DidClickSh)(void);
  11. @interface YOUPAIZYUserZiLiaoSHNoDataCell : UICollectionViewCell
  12. @property (strong, nonatomic) NSArray *youpaipdataArr;
  13. /* 庇护按钮 */
  14. @property (strong, nonatomic) UIButton *youpaipshouhuBtn;
  15. /* userID */
  16. @property (copy, nonatomic) NSString *youpaipuserId;
  17. /* titleLabel */
  18. @property (strong, nonatomic) UILabel *youpaiptitleLabel;
  19. /* 点击守护 */
  20. @property (copy, nonatomic) DidClickSh youpaipdidClickSh;
  21. @end
  22. NS_ASSUME_NONNULL_END