123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- //
- // YOUPAIMineNickNameCell.h
- // MSYOUPAI
- //
- // Created by admin on 2022/3/2.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #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<YOUPAIZYLabelModel*> *dataSouce;
- -(void)reloadData;
- @end
- /**
- 女神-收费设置
- */
- @interface YOUPAILZBigCastMoneySettingCell : YOUPAIMineInfoBaseCell
- @property (strong, nonatomic) UILabel *vlaueLab;
- @end
- NS_ASSUME_NONNULL_END
|