| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // WechatInfoView.m
- // TXXiaoShiPinDemo
- //
- // Created by shengcui on 2018/9/14.
- // Copyright © 2018年 tencent. All rights reserved.
- //
- #import "TXWechatInfoView.h"
- #define L(X) NSLocalizedString((X), nil)
- @implementation TXWechatInfoView
- {
- UILabel *wechatInfoLabel;
- }
- - (instancetype)initWithFrame:(CGRect)frame
- {
- self = [super initWithFrame:frame];
- if (self) {
- self.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleBottomMargin;
- wechatInfoLabel = [[UILabel alloc] initWithFrame:self.bounds];
- wechatInfoLabel.numberOfLines = 0;
- wechatInfoLabel.textColor = [UIColor colorWithWhite:1 alpha:1];
- wechatInfoLabel.text = [@[L(@"如何获取技术支持服务?"), L(@"关注公众号“腾讯云视频”"), L(@"给公众号发送“小视频”")] componentsJoinedByString:@"\n"];
- wechatInfoLabel.textAlignment = NSTextAlignmentCenter;
- [wechatInfoLabel sizeToFit];
- [self addSubview:wechatInfoLabel];
- }
- return self;
- }
- - (CGSize)sizeThatFits:(CGSize)size
- {
- return [wechatInfoLabel sizeThatFits:size];
- }
- - (void)layoutSubviews {
- [super layoutSubviews];
- wechatInfoLabel.frame = self.bounds;
- }
- @end
|