2021-10-14 21:10:04 +08:00
|
|
|
//
|
|
|
|
// XPRoomMessageView.m
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by 冯硕 on 2021/10/11.
|
|
|
|
//
|
|
|
|
|
2021-10-18 19:10:13 +08:00
|
|
|
#import "XPRoomMessageContainerView.h"
|
2021-10-14 21:10:04 +08:00
|
|
|
|
2021-10-18 19:10:13 +08:00
|
|
|
@implementation XPRoomMessageContainerView
|
2021-10-14 21:10:04 +08:00
|
|
|
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame
|
|
|
|
{
|
|
|
|
self = [super initWithFrame:frame];
|
|
|
|
if (self) {
|
|
|
|
[self initSubViews];
|
|
|
|
[self initSubViewConstraints];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark - Private Method
|
|
|
|
- (void)initSubViews {
|
|
|
|
self.backgroundColor = [UIColor orangeColor];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)initSubViewConstraints {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|