cdts/xdts-ios 3/TreeHole/Code/Utility/InputView/AlertInputView.h

22 lines
697 B
C
Raw Normal View History

2023-07-27 09:20:00 +08:00
//
// AlertInputView.h
// Meet
//
// Created by mambaxie on 2021/1/10.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface AlertInputView : UIView
+ (MTAlertView *)showWithTitle:(NSString *)title content:(nullable NSString *)content maxLength:(NSUInteger)maxLength action:(BOOL(^)(NSString *content))action;
+ (MTAlertView *)showCheckPasswordWithTitle:(NSString *)title content:(nullable NSString *)content maxLength:(NSUInteger)maxLength action:(BOOL(^)(NSString *content))action;
+ (MTAlertView *)showChangePasswordWithTitle:(NSString *)title maxLength:(NSUInteger)maxLength action:(BOOL(^)(NSString *originPassowrd, NSString *newPassowrd))action;
@end
NS_ASSUME_NONNULL_END