// // YOUPAIMineNickNameCell.h // MSYOUPAI // // Created by admin on 2022/3/2. // Copyright © 2022 MS. All rights reserved. // #import #import "YOUPAIMineInfoBaseCell.h" #import "YOUPAIBubbleLabel.h" #import "YOUPAIZYLabelModel.h" NS_ASSUME_NONNULL_BEGIN /** 编辑昵称cell */ @interface YOUPAIMineNickNameCell : YOUPAIMineInfoBaseCell @property (strong, nonatomic) UILabel *vlaueLab; @end /** 编辑声音 */ @interface YOUPAIMineVoiceCell : YOUPAIMineInfoBaseCell @property (strong, nonatomic) UILabel *vlaueLab; @end /** 编辑生日cell */ @interface YOUPAIMineBirthdayCell : YOUPAIMineInfoBaseCell @property (strong, nonatomic) UILabel *vlaueLab; @end /** 编辑地址 */ @interface YOUPAIMineAddressCell : YOUPAIMineInfoBaseCell @property (strong, nonatomic) UILabel *vlaueLab; @end /** 编辑身高 */ @interface YOUPAIMineHeightCell : YOUPAIMineInfoBaseCell @property (strong, nonatomic) UILabel *vlaueLab; @end /** 编辑职业 */ @interface YOUPAIMineProfessionCell : YOUPAIMineInfoBaseCell @property (strong, nonatomic) UILabel *vlaueLab; @end /** 编辑收入 */ @interface YOUPAIMineIncomeCell : YOUPAIMineInfoBaseCell @property (strong, nonatomic) UILabel *vlaueLab; @end /** 编辑学历 */ @interface YOUPAIMineEducationCell : YOUPAIMineInfoBaseCell @property (strong, nonatomic) UILabel *vlaueLab; @end /** 编辑婚姻状态 */ @interface YOUPAIMineMaritalStatusCell : YOUPAIMineInfoBaseCell @property (strong, nonatomic) UILabel *vlaueLab; @end /** 编辑自我介绍 */ @interface YOUPAIMineIntroduceCell : YOUPAIMineInfoBaseCell // 状态lab @property (strong, nonatomic) UILabel *statusLab; @property (strong, nonatomic) UILabel *vlaueLab; // 气泡 @property(strong, nonatomic) YOUPAIBubbleLabel*bubbleLab; @end /** 编辑我的标签 */ @interface YOUPAIMineLabelCell : YOUPAIMineInfoBaseCell // 状态lab @property (strong, nonatomic) UILabel *statusLab; @property (strong, nonatomic) UILabel *vlaueLab; @property (strong, nonatomic) UIStackView *stackView; @property (strong, nonatomic) NSArray *dataSouce; -(void)reloadData; @end /** 女神-收费设置 */ @interface YOUPAILZBigCastMoneySettingCell : YOUPAIMineInfoBaseCell @property (strong, nonatomic) UILabel *vlaueLab; @end NS_ASSUME_NONNULL_END