36 lines
717 B
Objective-C
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
|