YOUPAIZYUserZiLiaoBHNoDataCell.h 660 B

12345678910111213141516171819202122232425
  1. //
  2. // YOUPAIZYUserZiLiaoBHNoDataCell.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 (^DidClickBH)(void);
  11. @interface YOUPAIZYUserZiLiaoBHNoDataCell : UICollectionViewCell
  12. /* 庇护按钮 */
  13. @property (strong, nonatomic) UIButton *youpaipbihuBtn;
  14. @property (copy, nonatomic) NSString *youpaipuserId;
  15. /* titleLabel */
  16. @property (strong, nonatomic) UILabel *youpaiptitleLabel;
  17. @property (strong, nonatomic) NSArray *youpaipdataArr;
  18. /* 点击庇护 */
  19. @property (copy, nonatomic) DidClickBH youpaipdidClickBH;
  20. @end
  21. NS_ASSUME_NONNULL_END