Files
yinmeng-ios-store/yinmeng-ios/DingDangApp/CodeClass/Room/View/PopView/RoomPopView.h
2023-12-07 10:50:21 +08:00

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