26 lines
512 B
C
26 lines
512 B
C
|
|
//
|
||
|
|
// YYRoomPswAlert.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2022/6/9.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "YYRoomSetModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface YYRoomPswAlert : UIView
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *touchImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIView *pswBgView;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
|
||
|
|
|
||
|
|
@property (nonatomic, copy) void(^onCompleteBlock)(void);
|
||
|
|
|
||
|
|
@property (nonatomic, strong) YYRoomSetModel *model;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|