diff --git a/xplan-ios/Main/Login/View/XPLoginVerifBindPhoneViewController.m b/xplan-ios/Main/Login/View/XPLoginVerifBindPhoneViewController.m index c7ed14e3..04a5204e 100644 --- a/xplan-ios/Main/Login/View/XPLoginVerifBindPhoneViewController.m +++ b/xplan-ios/Main/Login/View/XPLoginVerifBindPhoneViewController.m @@ -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;