// // CustomAlertView.h // Haishenghai-master // // Created by 刘云鸽 on 2019/4/8. // Copyright © 2019 Haishenghai intelligence network technology. All rights reserved. // #import typedef void(^ClickBlock)(NSArray * inputText); typedef void(^ReloadBlock)(); @interface CustomAlertView : UIView + (CustomAlertView *)sharedAlertView; - (void)showAlertViewWithConfirmAction:(ClickBlock)confirmBlock andReloadAction:(ReloadBlock)refreshBlcok; @end