52 lines
687 B
Mathematica
52 lines
687 B
Mathematica
![]() |
//
|
||
|
// 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
|