FDActionSheet.h 478 B

1234567891011121314151617181920212223242526
  1. //
  2. // FDActionSheet.h
  3. // FDFoundationObjC
  4. //
  5. // Created by fandongtongxue on 2020/2/27.
  6. //
  7. #import "FDPopView.h"
  8. @class FDAction;
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface FDActionSheet : FDPopView
  11. @property(nonatomic, strong) UIColor *titleColor;
  12. @property(nonatomic, strong) UIColor *backColor;
  13. - (instancetype)initWithTitle:(NSString *)title message:(NSString *)message;
  14. - (void)addAction:(FDAction *)action;
  15. - (void)show:(UIView *)superView;
  16. @end
  17. NS_ASSUME_NONNULL_END