SPSBTitleAndContentTableViewCell.h 649 B

123456789101112131415161718192021222324
  1. //
  2. // SPSBTitleAndContentTableViewCell.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/5/31.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface SPSBTitleAndContentTableViewCell : UITableViewCell
  10. @property (nonatomic, readonly, strong) UIView *spsb_bottomLine;
  11. @property (nonatomic, readonly, strong) UILabel *spsb_titleLabel;
  12. @property (nonatomic, readonly, strong) UILabel *spsb_contentLabel;
  13. + (SPSBTitleAndContentTableViewCell *)createSingleDisplayTitleCellWithTitle:(NSString *)title;
  14. + (SPSBTitleAndContentTableViewCell *)createSelectCellWithTitle:(NSString *)title content:(NSString *)content;
  15. @end
  16. NS_ASSUME_NONNULL_END