SPSBTableViewController.h 517 B

12345678910111213141516171819202122232425
  1. //
  2. // SPSBTableViewController.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/4/19.
  6. //
  7. #import <UIKit/UIKit.h>
  8. typedef NS_ENUM(NSUInteger, SPSBTableViewBackgroundColor) {
  9. SPSBTableViewBackgroundColorWhite,
  10. SPSBTableViewBackgroundColorGray,
  11. SPSBTableViewBackgroundColorOther
  12. };
  13. NS_ASSUME_NONNULL_BEGIN
  14. @interface SPSBTableViewController : UITableViewController
  15. - (instancetype)initWithStyle:(UITableViewStyle)style backgroundColor:(SPSBTableViewBackgroundColor)color;
  16. @end
  17. NS_ASSUME_NONNULL_END