1234567891011121314151617181920 |
- //
- // UIViewController+YOUPAIAlert.h
- // MSYOUPAI
- //
- // Created by admin on 2022/3/16.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UIViewController (YOUPAIAlert)
- /**
- 确认操作提示框
- */
- - (void)youpaifAlertWithTitle:(NSString *)title content:(NSString *)content cancelBtn:(NSString *)cancel confimBtn:(NSString *)confim confimBlock:(void (^)(void))block;
- @end
- NS_ASSUME_NONNULL_END
|