更换手机绑定页面去掉客服ID文字

This commit is contained in:
chenshuanglin
2023-04-04 10:39:47 +08:00
parent da4910954d
commit 82d3009c89

View File

@@ -420,11 +420,12 @@
- (UILabel *)tipsLabel{
if (!_tipsLabel) {
_tipsLabel = [[UILabel alloc] init];
_tipsLabel.text = [NSString stringWithFormat:@"如果您的手机号已丢失\n请咨询客服ID%@", @"88001"];
_tipsLabel.text = [NSString stringWithFormat:@"如果您的手机号已丢失\n请咨询客服"];
_tipsLabel.textColor = [ThemeColor textThirdColor];
_tipsLabel.font = [UIFont systemFontOfSize:14.f];
_tipsLabel.adjustsFontSizeToFitWidth = YES;
_tipsLabel.numberOfLines = 0;
_tipsLabel.textAlignment = NSTextAlignmentCenter;
_tipsLabel.hidden = YES;
}
return _tipsLabel;