Commit 2c858a69 authored by 朱璇's avatar 朱璇

UI 走查

parent 667c4ea5
......@@ -90,15 +90,15 @@
}];
_phoneLabel = [[UILabel alloc] init];
_phoneLabel.backgroundColor = UIColor.background;
_phoneLabel.textColor = UIColor.auxiliaryTextDark;
_phoneLabel.backgroundColor = RGBCOLOR_HEX(0xECECEC);
_phoneLabel.textColor = RGBCOLOR_HEX(0x484848);
_phoneLabel.textAlignment = NSTextAlignmentCenter;
_phoneLabel.layer.cornerRadius = 7;
_phoneLabel.layer.masksToBounds = YES;
_phoneLabel.font = [UIFont gmFont:16];
[self.container addSubview:_phoneLabel];
[_phoneLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.mas_equalTo(_iconLabel.mas_bottom).offset(25);
make.top.mas_equalTo(_iconLabel.mas_bottom).offset(20);
make.centerX.mas_equalTo(_headerImageView.mas_centerX);
make.height.mas_equalTo(37);
make.left.mas_equalTo(self.container.mas_left).offset(35);
......@@ -134,7 +134,7 @@
_tipLabel.font = [UIFont gmFont:11];
[self.container addSubview:_tipLabel];
[_tipLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(_authBtn.mas_bottom).offset(14);
make.top.equalTo(_authBtn.mas_bottom).offset(16);
make.bottom.mas_equalTo(self.container.mas_bottom).offset(-25 - UIView.safeAreaInsetsBottom);
make.centerX.mas_equalTo(_headerImageView.mas_centerX);
make.height.mas_equalTo(15);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment