22 lines
400 B
Objective-C
22 lines
400 B
Objective-C
//
|
|
// RoomPopView.h
|
|
// DingDangApp
|
|
//
|
|
// Created by apple on 2023/5/28.
|
|
//
|
|
|
|
#import "WLBaseView.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RoomPopView : WLBaseView
|
|
/**topView*/
|
|
@property (nonatomic,strong) UIImageView *topImageView;
|
|
/**whiteView*/
|
|
@property (nonatomic,strong) UIView *whiteView;
|
|
@property (nonatomic,copy) void(^backDismissBlock)(void);
|
|
- (void)dismiss;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|