Files
yinmeng-ios/xplan-ios/Main/Room/View/MessageContainerView/XPRoomMessageContainerView.m

32 lines
487 B
Mathematica
Raw Normal View History

2021-10-14 21:10:04 +08:00
//
// XPRoomMessageView.m
// xplan-ios
//
// Created by on 2021/10/11.
//
#import "XPRoomMessageContainerView.h"
2021-10-14 21:10:04 +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