SPSBConfirmAlertViewController.h 621 B

12345678910111213141516171819202122
  1. //
  2. // SPSBConfirmAlertViewController.h
  3. // 我的社保
  4. //
  5. // Created by shanp on 2021/4/26.
  6. //
  7. #import "SPSBPopupViewController.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface SPSBConfirmAlertViewController : SPSBPopupViewController
  10. + (instancetype)alertWithTitle:(nullable NSString *)title content:(nullable NSString *)content;
  11. - (void)setCancelButtonTitle:(nullable NSString *)title titleColor:(nullable UIColor *)color action:(void(^_Nullable)(void))action;
  12. - (void)setConfirmButtonTitle:(nullable NSString *)title titleColor:(nullable UIColor *)color action:(void(^_Nullable)(void))action;
  13. @end
  14. NS_ASSUME_NONNULL_END