UIViewController+YOUPAIAlert.h 461 B

1234567891011121314151617181920
  1. //
  2. // UIViewController+YOUPAIAlert.h
  3. // MSYOUPAI
  4. //
  5. // Created by admin on 2022/3/16.
  6. // Copyright © 2022 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface UIViewController (YOUPAIAlert)
  11. /**
  12. 确认操作提示框
  13. */
  14. - (void)youpaifAlertWithTitle:(NSString *)title content:(NSString *)content cancelBtn:(NSString *)cancel confimBtn:(NSString *)confim confimBlock:(void (^)(void))block;
  15. @end
  16. NS_ASSUME_NONNULL_END