123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // YOUPAILZProfileMenuItemCell.h
- // MEISHI
- //
- // Created by CY on 2021/1/12.
- // Copyright © 2021 leo. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAILCBaseInfo.h"
- @class YOUPAIHRMedalView;
- NS_ASSUME_NONNULL_BEGIN
- typedef void (^VqupaipDidSelectBlock)(NSString *title);
- @interface YOUPAILZProfileMenuItemCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *youpaipimgV; /// 图片
- @property (nonatomic, strong) UILabel *youpaiptextL; /// 文本
- @property (nonatomic, strong) UILabel *youpaipsubTextL; /// 子标题
- @property (nonatomic, strong) UIImageView *youpaiprightArrowImgV; /// 右边箭头
- @property (nonatomic, strong) UIButton *youpaiprightSwitch; /// 右边开关控件
- /* 右边文字 */
- @property (strong, nonatomic) UILabel *youpaiprightLabel;
- /* 右边显示勋章Image */
- @property (strong, nonatomic) UIImageView *youpaiprightImageView;
- /// 右侧展示类型
- /// default LZTableViewCellAccessoryNone
- @property (nonatomic, assign) LZTableViewCellAccessoryType youpaiplz_accessoryType;
- /* YOUPAIHRMedalView */
- @property (strong, nonatomic) YOUPAIHRMedalView *youpaiprighMedaltView;
- @property(nonatomic,strong)UIView *youpaipredView;
- @property(nonatomic,copy)NSString *youpaipisShow;
- @property(nonatomic,assign)NSInteger youpaiprightWidth;
- @property(nonatomic,strong)UIView *bgView;
- @property(nonatomic,strong)NSArray *countArr;
- @property(nonatomic,copy)VqupaipDidSelectBlock vqupaipDidSelectBlock;
- @end
- NS_ASSUME_NONNULL_END
|