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