21 lines
394 B
Objective-C
21 lines
394 B
Objective-C
//
|
|
// QXRoomBgSettingView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/6/23.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXRoomBgSettingView : UIView
|
|
@property (nonatomic,strong)NSString *roomId;
|
|
-(void)showInView:(UIView *)view;
|
|
@end
|
|
|
|
@interface QXRoomBgSettingCell : UICollectionViewCell
|
|
@property (nonatomic,strong)UIImageView *bgImageView;
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|