// // AlertInputView.h // Meet // // Created by mambaxie on 2021/1/10. // #import 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