1234567891011121314151617181920212223 |
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^CustomAlertDismissBlock)(UIButton *button);
- @interface DetectImageForOCRInfoErrorTipViewController : UIViewController
- + (UIViewController *)showCustomerAlertViewControllerWithSuperController:(UIViewController *)superController withType:(NSInteger)type actionBlock:(CustomAlertDismissBlock)customBlock;
- @property (nonatomic, copy) CustomAlertDismissBlock dismissBlock;
- @end
- NS_ASSUME_NONNULL_END
|