123456789101112131415161718192021222324 |
- //
- // SPSBTitleAndContentTableViewCell.h
- // 我的社保
- //
- // Created by shanp on 2021/5/31.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBTitleAndContentTableViewCell : UITableViewCell
- @property (nonatomic, readonly, strong) UIView *spsb_bottomLine;
- @property (nonatomic, readonly, strong) UILabel *spsb_titleLabel;
- @property (nonatomic, readonly, strong) UILabel *spsb_contentLabel;
- + (SPSBTitleAndContentTableViewCell *)createSingleDisplayTitleCellWithTitle:(NSString *)title;
- + (SPSBTitleAndContentTableViewCell *)createSelectCellWithTitle:(NSString *)title content:(NSString *)content;
- @end
- NS_ASSUME_NONNULL_END
|