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