Files
midi_ios/QXLive/HomePage(声播)/View/房间/麦位视图/QXSongSeatCell.m
2025-08-14 10:07:49 +08:00

36 lines
717 B
Objective-C

//
// QXSongSeatCell.m
// QXLive
//
// Created by 启星 on 2025/6/18.
//
#import "QXSongSeatCell.h"
@implementation QXSongSeatCell
- (instancetype)initWithFrame:(CGRect)frame
{
self = [super initWithFrame:frame];
if (self) {
[self initSubviews];
}
return self;
}
-(void)initSubviews{
self.seatContentView = [[QXRoomSeatContentView alloc] init];
self.seatContentView.onlyShowHeader = NO;
[self.contentView addSubview: self.seatContentView];
[self.seatContentView mas_makeConstraints:^(MASConstraintMaker *make) {
make.left.right.top.bottom.equalTo(self.contentView);
}];
}
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
@end