1234567891011121314151617181920212223 |
- //
- // SPSBActionSheetViewController.h
- // 我的社保
- //
- // Created by shanp on 2021/5/13.
- //
- #import "SPSBPopupViewController.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface SPSBActionSheetViewController : SPSBPopupViewController
- - (void)addTopView:(UIView *)view height:(CGFloat)height;//等于0的时候自动撑开topView
- - (void)addActionWithTitle:(NSString *)title action:(void(^)(void))action;
- - (void)addActionWithTitle:(NSString *)title titleColor:(UIColor *) titleColor action:(void(^)(void))action;
- - (void)addActionWithTitle:(NSString *)title titleColor:(nullable UIColor *) titleColor font:(nullable UIFont *)font action:(void(^)(void))action;
- @end
- NS_ASSUME_NONNULL_END
|