22 lines
697 B
Objective-C
22 lines
697 B
Objective-C
//
|
|
// 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
|