YOUPAIMineNickNameCell.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. //
  2. // YOUPAIMineNickNameCell.h
  3. // MSYOUPAI
  4. //
  5. // Created by admin on 2022/3/2.
  6. // Copyright © 2022 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAIMineInfoBaseCell.h"
  10. #import "YOUPAIBubbleLabel.h"
  11. #import "YOUPAIZYLabelModel.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. /**
  14. 编辑昵称cell
  15. */
  16. @interface YOUPAIMineNickNameCell : YOUPAIMineInfoBaseCell
  17. @property (strong, nonatomic) UILabel *vlaueLab;
  18. @end
  19. /**
  20. 编辑声音
  21. */
  22. @interface YOUPAIMineVoiceCell : YOUPAIMineInfoBaseCell
  23. @property (strong, nonatomic) UILabel *vlaueLab;
  24. @end
  25. /**
  26. 编辑生日cell
  27. */
  28. @interface YOUPAIMineBirthdayCell : YOUPAIMineInfoBaseCell
  29. @property (strong, nonatomic) UILabel *vlaueLab;
  30. @end
  31. /**
  32. 编辑地址
  33. */
  34. @interface YOUPAIMineAddressCell : YOUPAIMineInfoBaseCell
  35. @property (strong, nonatomic) UILabel *vlaueLab;
  36. @end
  37. /**
  38. 编辑身高
  39. */
  40. @interface YOUPAIMineHeightCell : YOUPAIMineInfoBaseCell
  41. @property (strong, nonatomic) UILabel *vlaueLab;
  42. @end
  43. /**
  44. 编辑职业
  45. */
  46. @interface YOUPAIMineProfessionCell : YOUPAIMineInfoBaseCell
  47. @property (strong, nonatomic) UILabel *vlaueLab;
  48. @end
  49. /**
  50. 编辑收入
  51. */
  52. @interface YOUPAIMineIncomeCell : YOUPAIMineInfoBaseCell
  53. @property (strong, nonatomic) UILabel *vlaueLab;
  54. @end
  55. /**
  56. 编辑学历
  57. */
  58. @interface YOUPAIMineEducationCell : YOUPAIMineInfoBaseCell
  59. @property (strong, nonatomic) UILabel *vlaueLab;
  60. @end
  61. /**
  62. 编辑婚姻状态
  63. */
  64. @interface YOUPAIMineMaritalStatusCell : YOUPAIMineInfoBaseCell
  65. @property (strong, nonatomic) UILabel *vlaueLab;
  66. @end
  67. /**
  68. 编辑自我介绍
  69. */
  70. @interface YOUPAIMineIntroduceCell : YOUPAIMineInfoBaseCell
  71. // 状态lab
  72. @property (strong, nonatomic) UILabel *statusLab;
  73. @property (strong, nonatomic) UILabel *vlaueLab;
  74. // 气泡
  75. @property(strong, nonatomic) YOUPAIBubbleLabel*bubbleLab;
  76. @end
  77. /**
  78. 编辑我的标签
  79. */
  80. @interface YOUPAIMineLabelCell : YOUPAIMineInfoBaseCell
  81. // 状态lab
  82. @property (strong, nonatomic) UILabel *statusLab;
  83. @property (strong, nonatomic) UILabel *vlaueLab;
  84. @property (strong, nonatomic) UIStackView *stackView;
  85. @property (strong, nonatomic) NSArray<YOUPAIZYLabelModel*> *dataSouce;
  86. -(void)reloadData;
  87. @end
  88. /**
  89. 女神-收费设置
  90. */
  91. @interface YOUPAILZBigCastMoneySettingCell : YOUPAIMineInfoBaseCell
  92. @property (strong, nonatomic) UILabel *vlaueLab;
  93. @end
  94. NS_ASSUME_NONNULL_END