FDAlertView.h 470 B

12345678910111213141516171819202122232425
  1. //
  2. // FDAlertView.h
  3. // FDUIKitObjC
  4. //
  5. // Created by fandongtongxue on 2020/2/27.
  6. //
  7. #import "FDPopView.h"
  8. @class FDAction;
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface FDAlertView : FDPopView
  11. - (instancetype)initWithTitle:(NSString *)title message:(NSString *)message;
  12. - (instancetype)initWithImage:(UIImage *)image title:(NSString *)title message:(NSString *)message;
  13. - (void)addAction:(FDAction *)action;
  14. - (void)show:(UIView *)superView;
  15. @end
  16. NS_ASSUME_NONNULL_END