Files
yinmeng-ios/xplan-ios/Main/Room/View/BaseUIContainerView/XPRoomGiftBannerView.m

52 lines
687 B
Mathematica
Raw Normal View History

//
// XPRoomGiftBannerView.m
// xplan-ios
//
// Created by on 2021/11/18.
//
#import "XPRoomGiftBannerView.h"
@interface XPRoomAvatarNickView : UIView
///
@property (nonatomic,strong) UIImageView *avatImageView;
///
@property (nonatomic,strong) UILabel *nickLabel;
@end
@implementation XPRoomAvatarNickView
- (instancetype)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
}
return self;
}
#pragma mark - Private Method
- (void)initSubViews {
}
- (void)initSubViewConstraints {
}
@end
@interface XPRoomGiftBannerView ()
///
@property (nonatomic,strong) UIImageView *backImageView;
@end
@implementation XPRoomGiftBannerView
@end