12345678910111213141516171819202122 |
- //
- // SPSBConfirmAlertViewController.h
- // 我的社保
- //
- // Created by shanp on 2021/4/26.
- //
- #import "SPSBPopupViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBConfirmAlertViewController : SPSBPopupViewController
- + (instancetype)alertWithTitle:(nullable NSString *)title content:(nullable NSString *)content;
- - (void)setCancelButtonTitle:(nullable NSString *)title titleColor:(nullable UIColor *)color action:(void(^_Nullable)(void))action;
- - (void)setConfirmButtonTitle:(nullable NSString *)title titleColor:(nullable UIColor *)color action:(void(^_Nullable)(void))action;
- @end
- NS_ASSUME_NONNULL_END
|