YOUPAILZProfileMenuItemCell.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // YOUPAILZProfileMenuItemCell.h
  3. // MEISHI
  4. //
  5. // Created by CY on 2021/1/12.
  6. // Copyright © 2021 leo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAILCBaseInfo.h"
  10. @class YOUPAIHRMedalView;
  11. NS_ASSUME_NONNULL_BEGIN
  12. typedef void (^VqupaipDidSelectBlock)(NSString *title);
  13. @interface YOUPAILZProfileMenuItemCell : UITableViewCell
  14. @property (nonatomic, strong) UIImageView *youpaipimgV; /// 图片
  15. @property (nonatomic, strong) UILabel *youpaiptextL; /// 文本
  16. @property (nonatomic, strong) UILabel *youpaipsubTextL; /// 子标题
  17. @property (nonatomic, strong) UIImageView *youpaiprightArrowImgV; /// 右边箭头
  18. @property (nonatomic, strong) UIButton *youpaiprightSwitch; /// 右边开关控件
  19. /* 右边文字 */
  20. @property (strong, nonatomic) UILabel *youpaiprightLabel;
  21. /* 右边显示勋章Image */
  22. @property (strong, nonatomic) UIImageView *youpaiprightImageView;
  23. /// 右侧展示类型
  24. /// default LZTableViewCellAccessoryNone
  25. @property (nonatomic, assign) LZTableViewCellAccessoryType youpaiplz_accessoryType;
  26. /* YOUPAIHRMedalView */
  27. @property (strong, nonatomic) YOUPAIHRMedalView *youpaiprighMedaltView;
  28. @property(nonatomic,strong)UIView *youpaipredView;
  29. @property(nonatomic,copy)NSString *youpaipisShow;
  30. @property(nonatomic,assign)NSInteger youpaiprightWidth;
  31. @property(nonatomic,strong)UIView *bgView;
  32. @property(nonatomic,strong)NSArray *countArr;
  33. @property(nonatomic,copy)VqupaipDidSelectBlock vqupaipDidSelectBlock;
  34. @end
  35. NS_ASSUME_NONNULL_END