Files
yuyin_ios/SweetParty/主类/音悦新增/房间设置/YYRoomNoticeAlert.h

26 lines
521 B
C
Raw Normal View History

2025-08-08 11:05:33 +08:00
//
// YYRoomNoticeAlert.h
// SweetParty
//
// Created by bj_szd on 2022/6/9.
//
#import <UIKit/UIKit.h>
#import "YYRoomSetModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface YYRoomNoticeAlert : UIView
@property (weak, nonatomic) IBOutlet UIImageView *touchImgV;
@property (weak, nonatomic) IBOutlet UITextView *textView;
@property (weak, nonatomic) IBOutlet UIButton *confirmBtn;
@property (nonatomic, copy) void(^onCompleteBlock)(void);
@property (nonatomic, strong) YYRoomSetModel *model;
@end
NS_ASSUME_NONNULL_END