AlertMyCartDeleteV.h 599 B

123456789101112131415161718192021222324252627
  1. //
  2. // AlertMyCartDeleteV.h
  3. // westkissMob
  4. //
  5. // Created by 王猛 on 2022/10/19.
  6. //
  7. #import "TT_BaseV.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. typedef void (^AlertNoAction)(void);
  10. typedef void (^AlertYesAction)(void);
  11. typedef void (^AlertCloseSuccess)(void);
  12. @interface AlertMyCartDeleteV : TT_BaseV
  13. - (instancetype)initWithAlertVtitle:(NSMutableAttributedString *)titile;
  14. - (instancetype)initWithYesBtnAlertVtitle:(NSString *)titile yesTitle:(NSString *)btnTitle;
  15. - (instancetype)initWithPaytypeAlertV:(UIImage *)payImg closeBtnImg:(UIImage *)closeImg;
  16. -(void)alertv_show;
  17. @end
  18. NS_ASSUME_NONNULL_END