12345678910111213141516171819202122232425 |
- //
- // SPSBTableViewController.h
- // 我的社保
- //
- // Created by shanp on 2021/4/19.
- //
- #import <UIKit/UIKit.h>
- typedef NS_ENUM(NSUInteger, SPSBTableViewBackgroundColor) {
- SPSBTableViewBackgroundColorWhite,
- SPSBTableViewBackgroundColorGray,
- SPSBTableViewBackgroundColorOther
- };
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBTableViewController : UITableViewController
- - (instancetype)initWithStyle:(UITableViewStyle)style backgroundColor:(SPSBTableViewBackgroundColor)color;
- @end
- NS_ASSUME_NONNULL_END
|