22 lines
379 B
Objective-C
Executable File
22 lines
379 B
Objective-C
Executable File
//
|
|
// SARoomPswAlert.h
|
|
// SamaVoice
|
|
//
|
|
// Created by bj_szd on 2022/5/27.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SARoomPswAlert : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIView *pswBgView;
|
|
@property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
|
|
|
|
@property (nonatomic, copy) void (^onConfirmBlock)(NSString *pwd);
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|