123456789101112131415161718192021222324252627282930 |
- //
- // YOUPAILPChatTipView.m
- // zhimi
- //
- // Created by 张灿 on 2019/1/28.
- // Copyright © 2019年 caiPro. All rights reserved.
- //
- #import "YOUPAILPChatTipView.h"
- @implementation YOUPAILPChatTipView
- - (instancetype)initWithFrame:(CGRect)frame
- {
- self = [super initWithFrame:frame];
- if (self) {
- [self youpaifsetupView];
- }
- return self;
- }
- - (void)youpaifsetupView{
- self.backgroundColor = [LZ7C69FEColor colorWithAlphaComponent:0.09f];
- UILabel* tipLabel = [[UILabel alloc]initWithFrame:CGRectMake(17, 0, self.mj_w - 34.0f, self.mj_h)];
- tipLabel.font = LCFont12;
- tipLabel.textColor = UIColor.whiteColor;
- [self addSubview:tipLabel];
- self.tipLabel = tipLabel;
- }
- @end
|