YOUPAIProfileMenuItemContentCell.h 1.3 KB

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